Skip to content

Instantly share code, notes, and snippets.

Created October 25, 2012 06:47
Show Gist options
  • Save anonymous/3950906 to your computer and use it in GitHub Desktop.
Save anonymous/3950906 to your computer and use it in GitHub Desktop.
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