Comment on Managing Work-In-Progress Folders with “ls -ltr”parentComments−ralph14yfind(1) has an -ls built-in, thought the format is slightly different. You can also use -printf to suit. Also, later GNU finds make some uses of xargs unnecessary. find -type f -exec ls -ltr {} +−agumonkey14yThat made me read about `+` accumulation, happy day.−sefkOP14yI didn't know about + either -- neato! Thanks.
Comments
find(1) has an -ls built-in, thought the format is slightly different. You can also use -printf to suit. Also, later GNU finds make some uses of xargs unnecessary.
That made me read about `+` accumulation, happy day.
I didn't know about + either -- neato! Thanks.