Re: find: sort files by date modified

2012-07-20 Thread Eric Blake
On 07/20/2012 11:18 AM, Enda wrote: > find -mtime 0 -printf "%f\n" > > > I use find to list files that were modified in the last 24 hours, how > do I sort them in order of when they were modified? find -mtime 0 -exec ls -d --sort=time {} + -- Eric Blake ebl...@redhat.com+1-919-301-3266 L

find: sort files by date modified

2012-07-20 Thread Enda
find -mtime 0 -printf "%f\n" I use find to list files that were modified in the last 24 hours, how do I sort them in order of when they were modified? - Enda