1

I would like to know if there is a way to open a single TCP connection to a server and request several pages over HTTP on that connection.

Is there a way to do this using common Linux client tools?

nc4pk
  • 9,257
  • 14
  • 61
  • 71
Arun
  • 174
  • 1
  • 1
  • 7

1 Answers1

4

Create a list of the pages you want in a file and then use wget to download them.

wget -i url_list.txt
Jack
  • 1,343