Remove extraneous spaces

This commit is contained in:
Nick Chambers 2022-10-11 02:58:49 -05:00
parent 64dbd49a40
commit f162857633
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ cols=$(tput cols) line=""
while (( ${#line} < cols + ${#1} )); do
if (( ${#line} < ${#1} )); then
line=${1:$(( ${#1} - ${#line} - 1)):1}$line
line=${1:$((${#1}-${#line}-1)):1}$line
else
line=" $line"
fi