I have to download a bunch of sequence files stored at 1000 genomes subdirectories, which are stored at a main directory called MXL: ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/data_collections/1000_genomes_project/data/MXL/
I tried to use the command $ curl ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/data_collections/1000_genomes_project/data/MXL/
But it did not work. I also tried the following code:
ftp ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/data_collections/1000_genomes_project/data/MXL/
wget -r ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/data_collections/1000_genomes_project/data/MXL/*
None of the above worked.
I want to download all the files nested at MXL subdirectories at once. I will appreciate any help.
Thanks!