first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / files / order_file_dates.sh
1 #!/bin/bash
2 for i in $(ls -1 | sort ) ; do 
3   touch $i
4   sleep 2
5 done
6