Skip to content

Instantly share code, notes, and snippets.

@rockpapergoat
Created January 26, 2012 16:17
Show Gist options
  • Save rockpapergoat/1683569 to your computer and use it in GitHub Desktop.
Save rockpapergoat/1683569 to your computer and use it in GitHub Desktop.
#!/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