我对编写一个不使用wget
从指定链接下载文件的脚本感兴趣。下载内容应保存为world.o
文件夹/tmp
。有人能指导我吗?我对脚本编写还很陌生。
答案1
您可以使用 curl。创建一个包含以下内容的文件:
#!/bin/bash
curl -o target/path/filename URL
其中 target/path/filename 是您要保存到的文件夹/tmp
,URL 是您指定的链接。
所以
#!/bin/bash
curl -o /tmp/world.o http://example.com/your.file
如果未安装 curl,可以使用 安装它sudo apt-get install curl
。