Tadeáš Jílek
Tadeáš Jílek

Reputation: 2833

Mac OS X - running terminal commands async

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

Answers (1)

gonczor
gonczor

Reputation: 4146

You can use & to send command to background.

$  pwd &
[1] 1720
/Users/gonczor
[1]+  Done                    pwd

Upvotes: 6

Related Questions