I'm using wget to pull down four files, and save them all to a single folder. The problem is that while they are all different files, each of them have the same file name on the original servers. I would like to have wget save each one under a different file name. Is it possible to have wget rename the files as they are saved, or is there another solution that might work just as well?
The main reason I'm using wget is because I can have a list of files for it to get in one txt file, without me having to start each one separately.
Example:
(on the server)
/folder1/file.txt
/folder2/file.txt
(on my computer)
/folder/file1.txt
/folder/file2.txt
The main reason I'm using wget is because I can have a list of files for it to get in one txt file, without me having to start each one separately.
Example:
(on the server)
/folder1/file.txt
/folder2/file.txt
(on my computer)
/folder/file1.txt
/folder/file2.txt
Comment