Skip to content

Instantly share code, notes, and snippets.

@bivald
Created April 11, 2014 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bivald/10455346 to your computer and use it in GitHub Desktop.
Save bivald/10455346 to your computer and use it in GitHub Desktop.
Signal strength, mac
# Signal strength:
while x=1; do /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I | grep agrCtlRSSI | awk '{print "Signal strength: "$2}' ; sleep 0.5; done
# BSSID
while x=1; do /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I | grep BSSID; sleep 0.5; done
# Speed
ping www.google.se
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment