Created
January 31, 2015 02:25
-
-
Save gjpalau/c63e2a591332523c2388 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
AIRPORT="en1" | |
USER="$USER" | |
if [ "$USER" = Public ]; then | |
networksetup -removeallpreferredwirelessnetworks | |
ifconfig en0 up | |
echo "Ethernet is now turned on" | |
networksetup -setairportpower en1 off | |
echo "Airport is now turned off." | |
exit 0 | |
else | |
networksetup -setairportpower en1 on | |
echo "Airport is turned on." | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment