Skip to content

Instantly share code, notes, and snippets.

@scode
Created February 5, 2015 06:03
Show Gist options
  • Select an option

  • Save scode/0da5455388d2d595f799 to your computer and use it in GitHub Desktop.

Select an option

Save scode/0da5455388d2d595f799 to your computer and use it in GitHub Desktop.
#!/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