go/cp437-to-utf8.go @ 005c4bb9b6e6

More
author Steve Losh <steve@stevelosh.com>
date Mon, 06 Jan 2020 17:02:45 -0800
parents dabb5f1ef3b2
children (none)
package main

import (
	"io"
	"os"

	"golang.org/x/text/encoding/charmap"
	"golang.org/x/text/transform"
)

func main() {
	r := transform.NewReader(os.Stdin, charmap.CodePage437.NewDecoder())
	io.Copy(os.Stdout, r)
}