From 0aa8cc2a52a11b68ff8cbc4a03dfacd39a813136 Mon Sep 17 00:00:00 2001 From: Jake Brinkmann Date: Fri, 11 Nov 2016 21:48:25 -0600 Subject: [PATCH] :sparkles: Format Linux/MacOS comments --- readme.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index b99e41a..7e1d5e7 100644 --- a/readme.md +++ b/readme.md @@ -189,8 +189,8 @@ ls -la my_folder **STOP OPENING YOUR FINDER OR FILE EXPLORER** ``` -tree # on Linux -find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' # on macOS +tree # on Linux +find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' # on macOS ``` ## find a stale file @@ -225,8 +225,8 @@ date +%m/%d/%Y What about a week from now? ```bash -date -d "+7 days" # On linux -date -j -v+7d # On osx +date -d "+7 days" # On Linux +date -j -v+7d # On MacOS ``` ===