1
0
mirror of https://github.com/strongdm/comply synced 2024-07-02 23:14:22 +00:00
comply/vendor/github.com/lunixbochs/vtclean
2018-05-15 14:13:11 -07:00
..
.travis.yml Initial commit 2018-05-15 14:13:11 -07:00
io.go Initial commit 2018-05-15 14:13:11 -07:00
LICENSE Initial commit 2018-05-15 14:13:11 -07:00
line.go Initial commit 2018-05-15 14:13:11 -07:00
README.md Initial commit 2018-05-15 14:13:11 -07:00
regex.txt Initial commit 2018-05-15 14:13:11 -07:00
vtclean.go Initial commit 2018-05-15 14:13:11 -07:00

Build Status

vtclean

Clean up raw terminal output by stripping escape sequences, optionally preserving color.

Get it: go get github.com/lunixbochs/vtclean/vtclean

API:

import "github.com/lunixbochs/vtclean"
vtclean.Clean(line string, color bool) string

Command line example:

$ echo -e '\x1b[1;32mcolor example
color forced to stop at end of line
backspace is ba\b\bgood
no beeps!\x07\x07' | ./vtclean -color

color example
color forced to stop at end of line
backspace is good
no beeps!

Go example:

package main

import (
    "fmt"
    "github.com/lunixbochs/vtclean"
)

func main() {
    line := vtclean.Clean(
        "\033[1;32mcolor, " +
        "curs\033[Aor, " +
        "backspace\b\b\b\b\b\b\b\b\b\b\b\033[K", false)
    fmt.Println(line)
}

Output:

color, cursor