如何枚举 shell 中的特定数字/标题

如何枚举 shell 中的特定数字/标题

我想拨打:

wget linkftp://ftp-trace.ncbi.nih.gov/sra/srainstant/reads/ByRun/sra/SRR/SRR03108/SRR03108.sra
wget linkftp://ftp-trace.ncbi.nih.gov/sra/srainstant/reads/ByRun/sra/SRR/SRR03109/SRR03109.sra

#Continuing... to 29

wget linkftp://ftp-trace.ncbi.nih.gov/sra/srainstant/reads/ByRun/sra/SRR/SRR03129/SRR03129.sra

我已经尝试过{08:29},但似乎无法同时枚举两者。

我怎样才能有效地做到这一点?

答案1

使用循环和变量:

for i in {08..29}
do
    wget linkftp://ftp-trace.ncbi.nih.gov/sra/srainstant/reads/ByRun/sra/SRR/SRR031$i/SRR031$i.sra
done

相关内容