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

Spawning two threads by one command

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

bash: syntax error near unexpected token `&&'  

我该怎么做?

你们太亲密了:-)

git gui & gitk & 

应该可以解决问题。