Skip to content

Instantly share code, notes, and snippets.

@mheap
Created October 11, 2011 18:43
Show Gist options
  • Save mheap/1278992 to your computer and use it in GitHub Desktop.
Save mheap/1278992 to your computer and use it in GitHub Desktop.
Change MAC Address OSX
NEWMAC=$1
echo $NEWMAC
INTERFACE='en0'
echo "Before:"
ifconfig $INTERFACE | grep ether
/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -z
ifconfig $INTERFACE ether $NEWMAC
echo "After:"
ifconfig $INTERFACE | grep ether
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment