Rewrite calcWidth()

This commit is contained in:
Santiago Lo Coco 2022-01-29 13:09:11 -03:00
parent fc473c031a
commit 2cd54829d3
1 changed files with 5 additions and 5 deletions

View File

@ -354,16 +354,16 @@ calcAndRun() {
calcWidth() {
str=$1; count=1; found=false; option=1
for (( i = 0; i < ${#str}; i++ )); do
if [ "${str:$i:1}" = "\\" ] && [ "${str:$((i+1)):1}" = "n" ]; then
while IFS= read -r -N 1 c; do
if [[ "$c" == $'\n' ]]; then
[ $count -ge $option ] && option=$count
found=true
count=-1
fi
((count++))
done
[ $option -ge "$count" ] && count=option
echo $((count+3))
done < <(echo -ne "$str")
[ $option -ge $count ] && count=option
echo $((count+4))
}
calcHeight() {