reverted to umask 022 to allow others to read, since turning off the rx bits for...
[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