normalize

This commit is contained in:
Mark McGranaghan 2012-09-23 12:16:37 -04:00
parent ae112de5ae
commit e8da058c16

View File

@ -1,8 +1,10 @@
# Make a file with a few lowercase lines.
cat <<EOLINES > lines
$ cat <<EOLINES > lines
hello
filter
EOLINES
# Use the line filter to get uppercase lines.
cat lines | go run line-filter.go
$ cat lines | go run line-filter.go
HELLO
WORLD