"Arthur DiSegna" <[EMAIL PROTECTED]> writes: > I am using -i to read urls from an HTML file. How can I make > comments to this file with out the log showing "test.html: Invalid > URL #"
You can always preprocess the file using something like:
grep -v '^#' inputfile | wget -i -
or, if you want to get really fancy with your shell's process
substitution (requires ksh/bash/zsh/...):
wget -i <(grep -v ^# inputfile)
