I am trying to download all files and folders from a particular folder. If I turn on recursive, it downloads all of the folders leading up to the folder I want, which I do not want. I tried adding –np or --no-parent, but I get the same behavior, so I don’t think I am using the command correctly.
From a bash script I tried running: wget –r –np ftp://10.10.10.10/AAA/BBB/CCC/DDD/*
I want all files, folders (and their files) from only DDD. When I run the above command what I get is all of the folders:
10.10.10.10/AAA/BBB/CCC/DDD/<all folders and files under DDD>
I have tried different iterations of the command above but always the same behavior. What’s the correct syntax?
From a bash script I tried running: wget –r –np ftp://10.10.10.10/AAA/BBB/CCC/DDD/*
I want all files, folders (and their files) from only DDD. When I run the above command what I get is all of the folders:
10.10.10.10/AAA/BBB/CCC/DDD/<all folders and files under DDD>
I have tried different iterations of the command above but always the same behavior. What’s the correct syntax?