Created
October 25, 2012 06:47
-
-
Save anonymous/3950906 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
function split_novowel { | |
echo $1 | cut -d_ -f$2 | sed 's/[aeiou]//g' | |
} | |
function abbr { | |
echo $(split_novowel $1 1 | cut -c 1-3)$(split_novowel $1 2 | cut -c 1-1) | |
} | |
abbr Computer_Hardware |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment