I have the following 'inputfile'...
when i use wget as below...
wget -i inputfile
I get 3 files:
schedules?view=all, complete.html, highesttotal.html
I can use the -O option to redirect output to a specific file. For example...
wget -i inputfile -O outputfile
With above, all three output files are concatenated into one file, 'outputfile'.
How may i use wget in the above example to redirect output to 3 different output files: output1, output2, output3
I prefer not to use wget 3 times.
Thanks a ton!
Arun
when i use wget as below...
wget -i inputfile
I get 3 files:
schedules?view=all, complete.html, highesttotal.html
I can use the -O option to redirect output to a specific file. For example...
wget -i inputfile -O outputfile
With above, all three output files are concatenated into one file, 'outputfile'.
How may i use wget in the above example to redirect output to 3 different output files: output1, output2, output3
I prefer not to use wget 3 times.
Thanks a ton!
Arun