Comment on Managing Work-In-Progress Folders with “ls -ltr”parentComments−pjungwir14yI've used `ls -ltr` for years, and just recently I wrote a recursive version with the help of my local LUG mailing list. Here is my favorite version (put into a script in ~/bin): find "$1" -printf '%TY-%Tm-%Td_%TH:%TM:%TS\t%p\n' | sort -r It'd be easy to add `-type f` if that's what you want.
Comments
I've used `ls -ltr` for years, and just recently I wrote a recursive version with the help of my local LUG mailing list. Here is my favorite version (put into a script in ~/bin):
It'd be easy to add `-type f` if that's what you want.