Created
October 24, 2018 00:19
-
-
Save sdball/ccafc964527e60f0e0866335d6633986 to your computer and use it in GitHub Desktop.
This file contains 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
check_letter() { | |
echo "$1: `type $1 >/dev/null && type $1 | sed -e \"s/^$1: //\" | tr '\n' ' '`"; | |
} | |
letters() { | |
for letter in {a..z}; do | |
check_letter $letter | |
check_letter `echo $letter | tr a-z A-Z` | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment