Y
Hacker News
new
|
ask
|
show
|
jobs
by
extraduder_ire
868 days ago
I don't know of a reliable way of calling two separate curl commands at once though. Maybe abusing the shell job system, or learning the 'at' command. It has been a while since I've needed to do something like this.
2 comments
megous
868 days ago
Why abuse? That's what it's for. I'd just copy paste the curl line into a script file several times and put & at the end of each line.
Then end the script with wait command and run the script.
link
randunel
868 days ago
if curl & curl is too slow, try using gnu/parallel.
link
Then end the script with wait command and run the script.