bin:no-ansi: Fix final byte range

Don't know why I put `z`, the range goes until `~` (i.e. 0x7E).
This commit is contained in:
2025-09-01 13:40:50 +02:00
parent 198069fac7
commit ca15f2399e

View File

@@ -4,4 +4,4 @@
#
# Remove ANSI escape sequences.
env LC_ALL=C sed 's/\[[0-?]*[ -/]*[@-z]//g'
env LC_ALL=C sed 's/\[[0-?]*[ -/]*[@-~]//g'