mirror of
https://github.com/vbatts/go-mtree.git
synced 2025-07-03 22:28:29 +00:00
updating and adding vendored source to do it Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
14 lines
227 B
Go
14 lines
227 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
. "github.com/mattn/go-colorable"
|
|
)
|
|
|
|
func main() {
|
|
out := NewColorableStdout()
|
|
fmt.Fprint(out, "\x1B]0;TITLE Changed\007(See title and hit any key)")
|
|
var c [1]byte
|
|
os.Stdin.Read(c[:])
|
|
}
|