diff --git a/readme.md b/readme.md index 6dbd9e1..40f236d 100644 --- a/readme.md +++ b/readme.md @@ -30,6 +30,9 @@ As a computer expert, we want to be more efficient and do our jobs better. We kn 1. [remove a file](#removefile) 1. [remove a folder](#removefolder) 1. [list folder contents](#listfolder) +1. [find a stale file](#findfile) +1. [show a calendar](#showcal) + ## copy a file @@ -180,4 +183,24 @@ rm -r my_useless_folder ls -la my_folder ``` +## find a stale file + +**STOP USING YOUR FILE EXPLORER TO FIND A FILE** + +Find all files modified more than 5 days ago + +```bash +find my_folder -mtime +5 +``` + +## show a calendar + +**STOP LOOKING UP WHAT DAY IT IS BY CALENDAR WIDGETS** + +Display a text calendar, highlighting the current day + +``` +cal +``` + _Remember, you can always google or `man` the commands you are not familiar with._