Created
December 24, 2009 06:28
-
-
Save Oshuma/263052 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl "http://en.wikipedia.org/wiki/Pipeline_(Unix)" | \ | |
| sed 's/[^a-zA-Z ]/ /g' | \ | |
| tr 'A-Z ' 'a-z\n' | \ | |
| grep '[a-z]' | \ | |
| sort -u | \ | |
| comm -23 - /usr/share/dict/words | \ | |
| while read line; do | |
| echo Not Found: $line | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment