Answers:
绝对没有办法改变该对话框的布局。由于它不支持自定义排序和调整大小,因此无法更改。
但是可以从以下文件访问此列表的源:
/Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
您可以在任何文本编辑器,属性列表编辑器/ Xcode 4 PlistBuddy
或中打开/读取文件defaults
。
要获得完整的网络列表:
defaults read /Library/Preferences/SystemConfiguration/com.apple.airport.preferences RememberedNetworks | grep SSIDString | cut -d= -f2 | cut -d';' -f1
还要对不区分大小写的网络名称列表进行排序:
defaults read /Library/Preferences/SystemConfiguration/com.apple.airport.preferences RememberedNetworks | grep SSIDString | cut -d= -f2 | cut -d';' -f1 | sort -f
要打印网络名称和安全类型(如列表中所示),请使用:
defaults read /Library/Preferences/SystemConfiguration/com.apple.airport.preferences RememberedNetworks | grep -E "(SSIDString|SecurityType)" | cut -d= -f2 | sed -e 'N;s/\n/ /' -e 's|;||g'