Created
May 8, 2018 06:13
-
-
Save Ibmurai/5e330f430762519cf42c2da2ab31464f to your computer and use it in GitHub Desktop.
Fish function to convert a letter to a TV 2 team
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 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