A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 21:36:05 +01:00
|
|
|
# networksetup
|
|
|
|
|
|
|
|
> Configuration tool for Network System Preferences
|
|
|
|
|
|
|
|
- List available network service providers (Ethernet, Wi-Fi, Bluetooth, etc)
|
|
|
|
|
|
|
|
`networksetup -listallnetworkservices`
|
|
|
|
|
|
|
|
- Show network settings for a particular networking device
|
|
|
|
|
|
|
|
`networksetup -getinfo {{"Wi-Fi"}}`
|
|
|
|
|
|
|
|
- Get currently connected Wi-Fi network name (Wi-Fi device usually en0 or en1)
|
|
|
|
|
|
|
|
`networksetup -getairportnetwork {{en0}}`
|
|
|
|
|
|
|
|
- Connect to a particular Wi-Fi network
|
|
|
|
|
2014-02-17 17:15:03 +01:00
|
|
|
`networksetup -setairportnetwork {{en0}} {{"Airport Network SSID"}} {{password}}`
|