用于打开应用程序并自行终止而不关闭应用程序的Shell脚本

时间:2015-12-15 19:56:35

标签: bash shell

我有一个用一些自定义参数打开chrome的脚本:

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --use-system-ssl --use-spdy=off

我需要运行它并立即关闭运行它的过程而不会杀死chrome。有没有办法做到这一点?

2 个答案:

答案 0 :(得分:1)

说你的脚本是run_chrome。然后你可以做{run_chrome &} && disown;

答案 1 :(得分:1)

只需在后台/前叉中运行:

#/bin/sh
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --use-system-ssl --use-spdy=off &