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

That made me read about `+` accumulation, happy day.
I didn't know about + either -- neato! Thanks.