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

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -