mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2024-12-22 14:26:31 +00:00
9 lines
332 B
Bash
9 lines
332 B
Bash
#!bin/bash
|
|
|
|
curl --silent "https://api.github.com/repos/xvzc/SpoofDPI/releases/latest" |
|
|
grep '"tag_name":' |
|
|
sed -E 's/.*"([^"]+)".*/\1/' |
|
|
xargs -I {} curl -sOL "https://github.com/xvzc/SpoofDPI/releases/download/"\{\}'/spoof-dpi-osx.zip'
|
|
|
|
unzip -rf ./spoof-dpi-osx.zip
|