gobyexample/058-line-filters/line-filters.sh
Mark McGranaghan 14c09bd59b plural
2012-09-23 18:11:03 -07:00

9 lines
189 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-filters.go
HELLO
FILTER