This commit is contained in:
Santiago Lo Coco 2022-01-06 13:25:01 -03:00
parent 4989bfbab3
commit 00768e0e4a
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ calcWidthAndRun() {
calcHeightAndRun() {
str=$(echo "$@" | grep -oP '(?<=").*?(?=")')
newlines=$(printf '%s' "$str" | grep -c $'\n')
newlines=$(printf "$str" | grep -c $'\n')
chars=$(echo "$str" | wc -c)
height=$(echo "$chars" "$newlines" | awk '{
x = (($1 - $2 + ($2 * 60)) / 60)