gobyexample/095-line-filter/line-filter.sh
Mark McGranaghan 5f9b4d2eb4 lmao it worked
2012-09-23 13:11:11 -07:00

9 lines
188 B
Bash

# Make a file with a few lowercase lines.
$ echo 'hello' > lines
$ echo 'filter' >> lines
# Use the line filter to get uppercase lines.
$ cat lines | go run line-filter.go
HELLO
FILTER