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