diff --git a/096-line-filter/line-filter.sh b/096-line-filter/line-filter.sh index 8d32fce..03d6419 100644 --- a/096-line-filter/line-filter.sh +++ b/096-line-filter/line-filter.sh @@ -1,10 +1,8 @@ # Make a file with a few lowercase lines. -$ cat < lines -hello -filter -EOLINES +$ echo 'hello' > lines +$ echo 'filter' >> lines # Use the line filter to get uppercase lines. $ cat lines | go run line-filter.go HELLO -WORLD +FILTER