From b6f677723610a38c40d6269a6613dfea70b8859d Mon Sep 17 00:00:00 2001 From: Ashley Harvey Date: Sun, 23 Feb 2020 15:38:01 -0800 Subject: [PATCH] More formatting. --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 38ac221..e786b04 100644 --- a/readme.md +++ b/readme.md @@ -248,7 +248,7 @@ ls -la my_folder # -l: show in list format. -a: show all files, including hid ```shell tree # on Linux find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' # on MacOS -# Note: install homebrew (brew.sh) to be able to use (some) Linux utilities such as tree. +# Note: install homebrew (https://brew.sh) to be able to use (some) Linux utilities such as tree. ``` ## find a stale file @@ -323,7 +323,7 @@ ping umair.surge.sh ```shell cat apps/settings.py -# or, if the file is too big, you can take its output and push it through a 'pager' which shows you one page at a time. +# if the file is too big to fit on one page, you can send it to a 'pager' (less) which shows you one page at a time. cat apps/settings.py | less ```