I am trying to download the files for a project using wget, as the SVN server for that project isn\'t running anymore and I am only able to access the files thr
wget -r --no-parent URL --user=username --password=password
the last two options are optional if you have the username and password for downloading, otherwise no need to use them.
You can also see more options in the link https://www.howtogeek.com/281663/how-to-use-wget-the-ultimate-command-line-downloading-tool/