diff --git a/scripts/texttobase64.sh b/scripts/texttobase64.sh index d23b17c..271060d 100755 --- a/scripts/texttobase64.sh +++ b/scripts/texttobase64.sh @@ -8,8 +8,8 @@ do firstChar="${line:0:1}" if [[ "$firstChar" != "$commentChar" ]] && [[ -n "$firstChar" ]] then - echo -n $line | base64 + echo -n "$line" | base64 else - echo $line + echo "$line" fi done