我要尝试将这两个命令从curl
转换为wget
。
location=$(curl -Is "https://github.com/some/release"| grep "Location")
curl -Lo /usr/bin/somerelease "${some_release_url}"
我该如何实现?
第一次,我尝试过
wget -q --spider "https://github.com/some/release"
但是location
的值为nil。
第二,我尝试了
wget -ro /usr/bin/somerelease "${some_release_url}"
但是这给了我一个找不到的标志。
使用curl
可以正常工作,但是我无法配置正确的wget
标志来使其正常工作。我以this作为参考。