From 632bba0bfc65d63ac188a2be78fae053fa9701cd Mon Sep 17 00:00:00 2001 From: Jake Brinkmann Date: Fri, 11 Nov 2016 16:54:08 -0600 Subject: [PATCH] More functionality with Cal and Find (#7) * Add finding a file * Fix typo I did not mean to include the delete :expressionless: * Include a calendar * Change the cal command to -3 arg Display three months, instead of ```-w``` for week numbers * :scissors: Get rid of advanced cal arguments * :dizzy: Update formating and rearrange item orders * :sparkles: Fix typo in showcal stop-tagline --- readme.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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._