例:
& echo 'hi there'
执行预期的回声,没有错误消息.
你会发现的
; echo 'hi there'
(在这种情况下)基本上是相同的事情.
然而,这些是不同的:
sleep 10 ; echo 'hi' & echo 'there' sleep 10 ; echo 'hi' ; echo 'there'