Y
Hacker News
new
|
ask
|
show
|
jobs
by
ralph
5063 days ago
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.
find -type f -exec ls -ltr {} +
2 comments
agumonkey
5063 days ago
That made me read about `+` accumulation, happy day.
link
sefk
5062 days ago
I didn't know about + either -- neato! Thanks.
link