我有一个用一些自定义参数打开chrome的脚本:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --use-system-ssl --use-spdy=off
我需要运行它并立即关闭运行它的过程而不会杀死chrome。有没有办法做到这一点?
答案 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 &