ha! now have support for finding non-checked-in files in git repositories for rev_re...
[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