list - curl and getting 100 URLs in parallel -
cat urllist.txt | xargs -p0 -n1 curl | grep "href=" > out.txt
this works fine connects 1 url @ same time. how can curl 100 urls @ same time?
instead of using xargs, use parallel it. quite similar xargs instead fires commands in parallel - hence name...
Comments
Post a Comment