From d5a7cb54736c55319bc40a8e26ffc145aecb908d Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Sat, 17 Nov 2018 07:05:10 +1300 Subject: [PATCH] Fix indentation --- scripts/texttobase64.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/texttobase64.sh b/scripts/texttobase64.sh index 04c1feb..e094ee5 100755 --- a/scripts/texttobase64.sh +++ b/scripts/texttobase64.sh @@ -1,7 +1,7 @@ commentChar="#" -while read p; do - firstChar=${p:0:1} - if [[ "$firstChar" != "$commentChar" && "$firstChar" != "" ]] ; then +while read p; do + firstChar=${p:0:1} + if [[ "$firstChar" != "$commentChar" && "$firstChar" != "" ]] ; then echo -n $p | base64; else echo $p;