From 4423c5203bf115966d117ceb02dd2caf115dab1d Mon Sep 17 00:00:00 2001 From: Mario Alegre Date: Thu, 26 Nov 2020 02:31:38 -0500 Subject: [PATCH] fixed spacing --- shw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shw b/shw index 1b4ce43..0f661ba 100755 --- a/shw +++ b/shw @@ -2,10 +2,10 @@ # if stdin is coming from a pipe, run less if [[ ! -t 0 ]]; then - less -FX + less -FX # if there is only one arg and it is not a directory, less it elif [[ -z "$2" && ! -d "$1" ]]; then - less -FX "$1" + less -FX "$1" # otherwise, run dir else ls -lhAF --color=auto "$@"