Bash

分離一個程序,然後繼續一個命令

  • June 26, 2021

當我嘗試類似

$command &; command2

, bash 返回我

bash: syntax error near unexpected token `;'

我怎樣才能做到這一點?

&和都是;命令終止符。您使用其中之一,但不能同時使用兩者。

some_command1 & some_command2

some_commandA ; some_commandB

是相同的

some_command1 &
some_command2

some_commandA ;
some_commandB

…但是;當它在行尾時不需要,所以第二組命令與

some_commandA
some_commandB

引用自:https://unix.stackexchange.com/questions/655906