Created
February 5, 2015 06:03
-
-
Save scode/0da5455388d2d595f799 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
| #!/usr/bin/zsh | |
| set -e | |
| case "$1" in | |
| mobile) | |
| (set -x; | |
| nmcli c down uuid fbfcaacb-649b-4490-8293-c68b526250d8) | |
| nmcli c up uuid e3a22e4f-1973-4683-8de8-931578b0c6ec | |
| ;; | |
| home) | |
| (set -x; | |
| nmcli c down uuid e3a22e4f-1973-4683-8de8-931578b0c6ec | |
| nmcli c up uuid fbfcaacb-649b-4490-8293-c68b526250d8) | |
| ;; | |
| esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment