Skip to content

Instantly share code, notes, and snippets.

@arai-ta
Created March 6, 2018 11:22
Show Gist options
  • Save arai-ta/4e8e7b35eef7cdad3ae71edf68d03014 to your computer and use it in GitHub Desktop.
Save arai-ta/4e8e7b35eef7cdad3ae71edf68d03014 to your computer and use it in GitHub Desktop.
Macのネットワーク状況を表示するコマンド
#!/bin/sh
# WiFi
networksetup -getairportnetwork en0
# List service & status
networksetup -listallnetworkservices | \
sed -e '1d' | \
while read s
do
networksetup -getinfo "$s" | \
awk -v svc="$s" '
/^IP address/{ip=$3}
END{print ip ? ip : "[NO IPv4 addr]","\t:",svc}'
done | \
sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment