2019-10-14 11:38:21 +03:00

11 lines
410 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Чтобы опробовать наш фильтр строк, сначала создайте
# файл с несколькими строчными строчками.
$ echo 'hello' > /tmp/lines
$ echo 'filter' >> /tmp/lines
# Затем используйте фильтр строк, чтобы получить строчные
# буквы.
$ cat /tmp/lines | go run line-filters.go
HELLO
FILTER