SpoofDPI/install.sh

10 lines
409 B
Bash
Raw Normal View History

2022-01-12 08:30:26 +00:00
#!bin/bash
2022-01-12 08:59:40 +00:00
curl "https://api.github.com/repos/xvzc/SpoofDPI/releases/latest" |
2022-01-12 08:30:26 +00:00
grep '"tag_name":' |
sed -E 's/.*"([^"]+)".*/\1/' |
2022-01-12 08:59:40 +00:00
xargs -I {} curl -OL "https://github.com/xvzc/SpoofDPI/releases/download/"\{\}"/spoof-dpi-${1}.tar.gz"
2022-01-12 08:30:26 +00:00
2022-01-12 12:06:35 +00:00
tar -xzvf ./spoof-dpi-${1}.tar.gz && rm -rf ./spoof-dpi-${1}.tar.gz && mv ./spoof-dpi /usr/local/bin && hash -r
2022-01-12 11:59:26 +00:00