Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在服务器上有一个包含数百个图像链接的 txt 文件。所有链接都是图片。
我想 ssh 并使用 wget 将 txt 文件中的所有链接下载到服务器上的文件夹中。
我没有运气用谷歌搜索我的大脑
wget有-i开关。这样,您可以让它读取它应该从文件中下载的 URL:
wget
-i
ssh user@hostname 'wget -i imagelinks.txt'
如果您的文件每行包含一个 URL,则此方法有效。