Created
January 26, 2012 16:17
-
-
Save rockpapergoat/1683569 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/env bash | |
| function wireless_disable () { | |
| version=`sw_vers -productVersion | cut -d "." -f 2` | |
| airport=`networksetup -listallhardwareports | awk '/Wi-Fi|AirPort/ {getline; print $2}'` | |
| case $version in | |
| "7" ) | |
| networksetup -setairportpower $airport off | |
| echo "power to $airport is off." | |
| ;; | |
| "6" ) | |
| networksetup -setairportpower "AirPort" off | |
| esac | |
| } | |
| wireless_disable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment