标签: git-bash
我想在后台用git bash执行两个命令: git gui &和gitk & 我试过这个: $ git gui & && gitk & 得到了:
git gui &
gitk &
$ git gui & && gitk &
bash: syntax error near unexpected token `&&'
我该怎么做?
答案 0 :(得分:1)
你是如此亲密: - )
git gui & gitk &
应该这样做。