代码拉取完成,页面将自动刷新
#!/usr/bin/env bash
ARCH=$(uname -m)
if [ ${ARCH} == 'x86_64' ]; then
ARCH=amd64
elif [ ${ARCH} == 'armv6l' ]; then
ARCH=arm6
elif [ ${ARCH} == 'armv7l' ]; then
ARCH=arm7
elif [ ${ARCH} == 'arm64' ]; then
ARCH=arm64
else
echo "do not support ${ARCH}"
echo "please feel free to help improve this at https://github.com/LinuxSuRen/tools/blob/master/install.sh"
exit 1
fi
OS=$(uname -s)
if [ ${OS} == 'Darwin' ]; then
OS=darwin
elif [ ${OS} == 'Linux' ]; then
OS=linux
else
echo "do not support ${OS}"
echo "please feel free to help improve this at https://github.com/LinuxSuRen/tools/blob/master/install.sh"
exit 2
fi
address=https://github.com/linuxsuren/http-downloader/releases/latest/download/hd-${OS}-${ARCH}.tar.gz
if [ -x "$(command -v curl)" ]; then
curl -L $address | tar xzv hd
elif [ -x "$(command -v wget)" ]; then
wget $address -O - | tar xzv hd
else
echo "curl or wget is required to download hd."
exit 3
fi
if ($(./hd version> /dev/null 2> /dev/null)); then
sudo install hd /usr/bin/hd
rm -rf hd
hd completion
hd fetch
echo "config the proxy with command: hd setup"
else
echo "hd was not downloaded successfully."
fi
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。