Trying to run this to get just the files ending in .conf extension from a particular folder:
wget -nH -nc -np -r -e robots=off -R "index.html*" -r -l1 --no-parent -A.conf
http://localhost/TEST/ -B
http://localhost/TEST/
However, it's creating ./TEST/ in the folder I'm running this in. I don't want the subfolder ./TEST created. Just need the *.conf files. How can I do this with wget?
Tried taking out the -r doesn't have any effect.
Cheers,
DH