'How do I download two files from a website and save as two different names using linux?
I want to download TCGA-LUAD manifest and TSV file from
and save as “… TCGA_LUAD.txt TCGA_LUAD.tsv”
Can I use something like: wget -O fileA|fileB weblink.com ?
Solution 1:[1]
To download file and rename it use command : -> wget https://example.com/example.csv -O myfilename.txt
To combine multiple downloads you use && , as | operator will pass the output from first execution to another which will not be useful in this case so maybe you use something like : -> wget https://example.com/example.csv -O myfilename.txt && wget https://example.com/example2.csv -O myfilename2.txt
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Dharman |
