(MAC)终端可以运行命令

时间:2016-11-24 14:15:39

标签: macos command

使用命令:

osascript -e 'tell app "System Events" to display dialog "Press ok to run command"'

当你按下" OK"它会运行命令吗?

1 个答案:

答案 0 :(得分:0)

是的,它是基本的bash脚本,添加&&加上你想要运行的命令:

osascript -e 'tell app "System Events" to display dialog "Press ok to run command"' && echo "run it"

使用您需要的命令替换echo "run it"