lftp -c "open https://ftp.ncbi.nlm.nih.gov; mirror -c -e /genomes/all/GCA/951/799/435/GCA_951799435.1_drIleAqui2.1_alternate_haplotype/ ./Ilex_aquifolium"
#lftp可以代替wget下载,实现更快的速度
#下载打开10个并行连接,同时打开断点续传
lftp -e "pget -n 10 -c http://eggnog5.embl.de/download/eggnog_5.0/per_tax_level/2759/2759_hmms.... quit"
####用aria2多线程下载工具显著提高下载速度
aria2c -x 16 -s 16 http://eggnog5.embl.de/download/eggnog_5.0/per_tax_level/2759/2759_hmms.tar
#使用前先安装aria2
sudo yum install aria2