通过一个命令产生两个线程

时间:2016-01-15 03:13:06

标签: git-bash

我想在后台用git bash执行两个命令:
git gui &gitk &
我试过这个:
$ git gui & && gitk &
得到了:

bash: syntax error near unexpected token `&&'  

我该怎么做?

1 个答案:

答案 0 :(得分:1)

你是如此亲密: - )

git gui & gitk & 

应该这样做。