我有一个我想要运行的脚本。
我知道我可以打开终端并运行命令:
writer.WriteElementString("Good-price", Convert.ToString(good[i].price));
writer.WriteElementString("Good_price", Convert.ToString(good[i].price));
writer.WriteElementString("GoodPrice", Convert.ToString(good[i].price));
writer.WriteElementString("Good.Price", Convert.ToString(good[i].price));
但是如何通过双击脚本来运行它,类似于Windows中的open -na /Applications/Skype2.app \
--args -DataPath /Users/$(whoami)/Library/Application\ Support/Skype2
或app
文件?
答案 0 :(得分:1)
一种简单的方法是使用Automator应用程序创建包含Run Shell Script操作的“Application”。
如果您的GUI也是如此,请参阅https://stackoverflow.com/a/5126052/153099