Why can I do this in zsh:
zsh$ sleep 5 &; echo foo
[1] 14742
foo
but not in bash?
bash$ sleep 5 &; echo foo
bash: syntax error near unexpected token `;'
Is there any way to do the equivalent in bash?
|
Why can I do this in zsh:
but not in bash?
Is there any way to do the equivalent in bash? |
|||
|
|
|
I don't normally use
It also works in I checked zsh documentation and don't see any special meaning to the combination
|
|||||
|
|
One way to do it is to spawn a subshell for the background process:
But I'm not sure if it's strictly equivalent in the sense you are looking for. |
|||
|
|