hy/eg/sh/tagwords.hy

6 lines
147 B
Hy
Raw Normal View History

2013-03-23 19:33:04 +01:00
;; python-sh from hy
(import-from sh cat grep)
(print "Words that end with `tag`:")
(print (-> (cat "/usr/share/dict/words") (grep "-E" "tag$")))