我想从以下站点下载选定的文件:
ftp://ftp-trace.ncbi.nlm.nih.gov/sra/sra-instant/reads/ByStudy/sra/SRP/SRP042/SRP042286
如果我想下载它们,我可以:
$wget -r ftp://ftp-trace.ncbi.nlm.nih.gov/sra/sra-instant/reads/ByStudy/sra/SRP/SRP042/SRP042286/*
但我想问的是,如何用一种简单的方式下载刚刚选定的样本,比如
SRR1299458/ - SRR1299466/
。 最佳答案
您可以使用wget -r ftp://example.com/path/{dir1,dir2}
:
wget -r ftp://ftp-trace.ncbi.nlm.nih.gov/sra/sra-instant/reads/ByStudy/sra/SRP/SRP042/SRP042286/{SRR1299458,SRR1299466}
关于linux - 从ftp中选择样本的wget?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45291381/