切换网络共享
我正在寻找一个 Applescript 来切换 Snow Leopard 中的网络共享。 我尝试了这个,但它没有禁用,只是在我再次运行它时重新启动它。或者是 shell 命令只要我能把它变成 Quicksilver 动作就可以了。这就是我的最终目标。非常感谢!
I'm looking for an Applescript to toggle Web Sharing in Snow Leopard. I tried this but it doesn't disable, just restarts it when I run it again. Or a shell command as long as I can turn it into a Quicksilver action. That's my end goal. Thanks so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下 shell 脚本来切换 Mac OS X 服务的启用状态:
该脚本使用 service 命令来确定服务是否已打开,然后通过调用 启动ctl。
服务的名称必须作为唯一的参数传递。要切换 Web 共享运行:
要通过 AppleScript 调用 shell 脚本,您可以使用 do shell script 命令:
使用
password
参数以避免出现提示。You can use the following shell script to toggle the enabled state of a Mac OS X service:
The script uses the service command to determine if the service is on and then toggles its state by invoking launchctl.
The name of the service has to passed as the only argument. To toggle web sharing run:
To invoke the shell script via AppleScript you can use the do shell script command:
Use the
password
parameter to avoid being prompted.