perf: use sed for colour removals

This has a notable change of performance.
This commit is contained in:
Mariell Hoversholm 2023-08-06 20:20:06 +02:00
parent 1bf2281912
commit cf17522d50
No known key found for this signature in database

View file

@ -5152,7 +5152,7 @@ print_ascii() {
strip_escape_codes "${line}" line
# Use patterns to replace color codes that the above line did not catch
line=${line//\\033\[*([0-9;])[JKmsu]/}
line=${line//\[*([0-9;])[JKmsu]/}
line="$(printf %b "$line" | sed -E 's/'"$(printf %b '\x1B')"'\[*[0-9;]+[JKmsu]//g')"
((++lines,${#line}>ascii_len)) && ascii_len="${#line}"
done <<< "${ascii_data//\$\{??\}}"
fi