You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
302 B

package main
import (
"fmt"
"io/ioutil"
"os"
)
func main() {
if len(os.Args) < 2 {
fmt.Println("File name missing")
} else if len(os.Args) > 2 {
fmt.Println("Too many arguments")
} else {
b, err := ioutil.ReadFile(os.Args[1])
if err != nil {
panic(err)
}
os.Stdout.Write(b)
}
}