1
0
Fork 0

remove unneeded script

This commit is contained in:
Luca Bilke 2024-05-02 19:57:53 +02:00
parent f1808eecfe
commit ad4da4134c
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
#!/usr/bin/env perl
# this script should filter out any terminal escapes in a text stream
while (<>) {
s/ \e[ #%()*+\-.\/]. |
\e\[ [ -?]* [@-~] | # CSI ... Cmd
\e\] .*? (?:\e\\|[\a\x9c]) | # OSC ... (ST|BEL)
\e[P^_] .*? (?:\e\\|\x9c) | # (DCS|PM|APC) ... ST
\e. //xg;
print;
}