i would like to run two or more commands asynchronously.
How to achieve that? I need to run more cURL requests asynchronously.
i would like to run two or more commands asynchronously.
How to achieve that? I need to run more cURL requests asynchronously.
You can use &
to send command to background.
$ pwd &
[1] 1720
/Users/gonczor
[1]+ Done pwd