我正在尝试通过ssh在远程服务器上下载文件。 我创建了一个.txt文件:
wget https://storage.googleapis.com/gnomad-public/release/2.0.2/vcf/genomes/gnomad.genomes.r2.0.2.sites.chr1.vcf.bgz
我使用scp在服务器上发送了这个文件。
然后我通过ssh连接自己,我尝试过这样的事情:
while read line; do $line; done < my_file.txt
但是我收到了这个错误:
--2018-04-20 06:28:29-- https://storage.googleapis.com/gnomad-public/release/2.0.2/vcf/genomes/gnomad.genomes.r2.0.2.sites.chr1.vcf.bgz
Resolving storage.googleapis.com (storage.googleapis.com)... failed: Temporary failure in name resolution.
wget: unable to resolve host address `storage.googleapis.com'