mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2024-12-21 22:06:33 +00:00
26 lines
663 B
Bash
26 lines
663 B
Bash
#!/bin/bash
|
|
|
|
curl "https://api.github.com/repos/xvzc/SpoofDPI/releases/latest" |
|
|
grep '"tag_name":' |
|
|
sed -E 's/.*"([^"]+)".*/\1/' |
|
|
xargs -I {} curl -OL "https://github.com/xvzc/SpoofDPI/releases/download/"\{\}"/spoofdpi-${1}.tar.gz"
|
|
|
|
mkdir -p ~/.spoofdpi/bin
|
|
|
|
tar -xzvf ./spoofdpi-${1}.tar.gz && \
|
|
rm -rf ./spoofdpi-${1}.tar.gz && \
|
|
mv ./spoofdpi ~/.spoofdpi/bin
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error. exiting now"
|
|
exit
|
|
fi
|
|
|
|
export PATH=$PATH:~/.spoofdpi/bin
|
|
|
|
echo ""
|
|
echo "Successfully installed SpoofDPI."
|
|
echo "Please add the line below to your rcfile(.bashrc or .zshrc etc..)"
|
|
echo ""
|
|
echo ">> export PATH=\$PATH:~/.spoofdpi/bin"
|