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.
嗨,所以我在图书馆做一些研究,这样我以后可以在我房间里的台式电脑上使用一些图片。我的实验室帐户上有空间,我通常通过 SSH 进入,我想知道 URL 是否可以直接传输到远程机器并保存在硬盘上。
我在想这样的事情:
scp http://click.si.edu/images/truncatedurl.jpg /home3/etc.../filename.jpg
这可能吗?
提前致谢。
您可以像这样一起使用wgetand scp:
wget
scp
wget http://click.si.edu/images/truncatedurl.jpg -O file.jpg && scp file.jpg login@server:/home3/etc.../filename.jpg
该-O选项允许您命名输出文件,然后您就知道要将哪个文件上传到学校的服务器。
-O