Fire up Bash or your favorite shell and enter the following in the terminal:
find /home/r00tb0x/ -type f -mtime -2 -exec ls -ltrh "{}" ";"
This tells Unix to find all files (nodes of type 'f') which have been modified (created or appended to) in the last couple of days. The output will be sorted in chronological order with human readable format of the size field.
Similarly you can find old files by giving the mtime argument a positive value.
No comments:
Post a Comment