Find files modified today - Linux
If you have saved a file today and you can't remember where you saved it, you can use the find command to print out all files modified today. The command:
Will print out a listing of all files that were modified on the day the command was issued (today).
==================================================================================================
If you have saved a file today and you can't remember where you saved it, you can use the find command to print out all files modified today. The command:
find ~ -type f -mtime 0
Will print out a listing of all files that were modified on the day the command was issued (today).
==================================================================================================
No comments:
Post a Comment