|
|
|
|
|
by pjungwir
5062 days ago
|
|
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): 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. |
|