Bash:在后台启动应用程序的功能?

时间:2012-03-01 07:42:25

标签: bash function

以下功能:

esb () { emacs -f server-start $@ &; }

给出错误:

syntax error near unexpected token `;'

有没有办法在Bash的后台启动应用程序?

修改

所以解决方案是:

esb () { emacs -f server-start "$@" & }

1 个答案:

答案 0 :(得分:2)

&;都是命令分隔符。只使用一个;你没有通过组合它们获得超级bash脚本功能。