Y
Hacker News
new
|
ask
|
show
|
jobs
by
megous
860 days ago
You can also copy curl command right from the browser network tab, to recreate the request.
1 comments
extraduder_ire
860 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.
link
megous
859 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
860 days ago
if curl & curl is too slow, try using gnu/parallel.
link