We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, this is not a feature request.
I'm using the below script from .local/bin to install spoofdpi. Also pasting here for reference.
#!/bin/bash tagname=$(curl -s "https://api.github.com/repos/xvzc/SpoofDPI/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') os=$(uname) architecture="" case $(uname -m) in i386) architecture="386" ;; i686) architecture="386" ;; x86_64) architecture="amd64" ;; arm) dpkg --print-architecture | grep -q "arm64" && architecture="arm64" || architecture="arm" ;; esac filename="spoofdpi-$os-$architecture.tar.gz" cd $(dirname "$0") curl -OL "https://github.com/xvzc/SpoofDPI/releases/download/$tagname/$filename" tar -xzvf $filename && rm -rf $filename
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Hi, this is not a feature request.
I'm using the below script from .local/bin to install spoofdpi. Also pasting here for reference.
The text was updated successfully, but these errors were encountered: