最近时常需要修改auto proxy url,找到了一个alfred workflow
但是好像在有线网下不能工作,便想尝试自己看看代码,写个脚本什么的,好在代码也不长,一会就知道了原理。这是apple官网了关于networksetup命令的手册。 https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man8/networksetup.8.html
-setautoproxyurl networkservice url
Set proxy auto-config to url for <networkservice> and enable it.
但是奇怪的问题是设置on, off的时候都很正常,也能生效
networksetup -setautoproxystate “Thunderbolt Ethernet” off
networksetup -setautoproxystate “Thunderbolt Ethernet” on
但是一旦加上url参数就报错Error: The parameters were not valid.
networksetup -setautoproxystate “Thunderbolt Ethernet” “hehe”
networksetup -setautoproxystate “Thunderbolt Ethernet” “http://p.getxxxxxx.com/paths/xxxxxx.pac”
是字符转义的原因?尝试过添加转义符,和先把url赋值给变量,再用变量做参数都不行。
求帮助!
1
kfll 2014-10-18 07:53:45 +08:00 via Android 1
我猜你很快就知道哪里错了
|