This commit is contained in:
Santiago Lo Coco 2022-01-29 12:37:28 -03:00
parent 2d8453ed21
commit fc473c031a
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ calcWidth() {
}
calcHeight() {
newlines=$(echo -ne | grep -c $'\n')
newlines=$(echo -ne "$1" | grep -c $'\n')
height=$(echo "${#1}" "$newlines" | awk '{
x = (($1 - $2 + ($2 * 60)) / 60)
printf "%d", (x == int(x)) ? x : int(x) + 1