Skip to content

Instantly share code, notes, and snippets.

@Oshuma
Created December 24, 2009 06:28
Show Gist options
  • Select an option

  • Save Oshuma/263052 to your computer and use it in GitHub Desktop.

Select an option

Save Oshuma/263052 to your computer and use it in GitHub Desktop.
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