Skip to content

Instantly share code, notes, and snippets.

@gedsic
Created January 18, 2016 14:41
Show Gist options
  • Select an option

  • Save gedsic/371becbf903c5ba188b3 to your computer and use it in GitHub Desktop.

Select an option

Save gedsic/371becbf903c5ba188b3 to your computer and use it in GitHub Desktop.
List words that can be spelled with hexadecimal digits
#!/bin/bash
cat /usr/share/dict/american-english | grep --ignore-case "^[ABCDEFGILOSZ]*$" | sed 's/[gG]/6/g;s/[iI]/1/g;s/[lL]/1/g;s/[oO]/0/g;s/[sS]/5/g;s/[zZ]/2/g' | tr [:lower:] [:upper:]
@gedsic
Copy link
Author

gedsic commented Jan 18, 2016

6ED51C

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment