Skip to content

Instantly share code, notes, and snippets.

@Ibmurai
Created May 8, 2018 06:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibmurai/5e330f430762519cf42c2da2ab31464f to your computer and use it in GitHub Desktop.
Save Ibmurai/5e330f430762519cf42c2da2ab31464f to your computer and use it in GitHub Desktop.
Fish function to convert a letter to a TV 2 team
function tv2e
switch "$argv"
case 'a'
echo "playfe"
case 'b'
echo "is"
case 'c'
echo "cms"
case 'd'
echo "app"
case 'e'
echo "qa"
case 'f'
echo "infra"
case 'g'
echo "oc"
case 'h'
echo "playbe"
case '*'
echo "No such team"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment