mirror of
https://github.com/zplug/zplug
synced 2025-08-28 08:41:42 +02:00
7 lines
104 B
Bash
7 lines
104 B
Bash
#!/bin/zsh
|
|
|
|
unansi() {
|
|
cat <&0 \
|
|
| perl -pe 's/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g'
|
|
}
|