tags:

views:

19

answers:

1

I'm looking to combine find . -mtime 0

and ls -lt

To find all files modified in the last day in the current working directory, sorted by last modification date.

+3  A: 

It sounds like you want command substitution which is done with $(command). It takes the output of a command and allows you to use it as command line arguments for another command:

ls -lt $(find . -mtime 0)
R Samuel Klatchko
winner! thank you.
meder