summaryrefslogtreecommitdiff
path: root/functions/ansiStrip.fish
blob: 000306deaf267860bc0919fb234836e33f9832fe (plain)
1
2
3
function ansiStrip --description "Keep only ascii characters from the stream"
    sed 's/\x1b\[[0-9;]*m//g'
end