mirror of https://github.com/01-edu/public.git
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.
25 lines
339 B
25 lines
339 B
package main |
|
|
|
import ( |
|
"io" |
|
"io/ioutil" |
|
"os" |
|
|
|
"lib" |
|
) |
|
|
|
func main() { |
|
if len(os.Args) == 1 { |
|
if _, err := io.Copy(os.Stdout, os.Stdin); err != nil { |
|
panic(err) |
|
} |
|
} else { |
|
for _, arg := range os.Args[1:] { |
|
b, err := ioutil.ReadFile(arg) |
|
if err != nil { |
|
lib.Fatalln("ERROR:", err) |
|
} |
|
os.Stdout.Write(b) |
|
} |
|
} |
|
}
|
|
|