Thanks Pádraig, Eric, Andreas and Jim,
This almost gives the output that I want:
find * -mtime 0 -exec ls -rt {} +
Is there a way to list files not on a separate line, but one after the
other with a space in between them (and a newline at the end)?, like
'-m' except without the commas and the newline being only at end.
- Enda
P.S.
This gives the kind of output that I want except in the wrong order:
find -mtime 0 -printf "%f\n"
