-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9680e9
commit b6b47c3
Showing
723 changed files
with
97 additions
and
243,252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
#!/bin/bash | ||
#From https://github.com/oneclickvirt/pingtest | ||
#2024.06.29 | ||
|
||
rm -rf /usr/bin/pt | ||
rm -rf pt | ||
os=$(uname -s) | ||
arch=$(uname -m) | ||
|
||
check_cdn() { | ||
local o_url=$1 | ||
for cdn_url in "${cdn_urls[@]}"; do | ||
if curl -sL -k "$cdn_url$o_url" --max-time 6 | grep -q "success" >/dev/null 2>&1; then | ||
export cdn_success_url="$cdn_url" | ||
return | ||
fi | ||
sleep 0.5 | ||
done | ||
export cdn_success_url="" | ||
} | ||
|
||
check_cdn_file() { | ||
check_cdn "https://raw.githubusercontent.com/spiritLHLS/ecs/main/back/test" | ||
if [ -n "$cdn_success_url" ]; then | ||
echo "CDN available, using CDN" | ||
else | ||
echo "No CDN available, no use CDN" | ||
fi | ||
} | ||
|
||
cdn_urls=("https://cdn0.spiritlhl.top/" "http://cdn3.spiritlhl.net/" "http://cdn1.spiritlhl.net/" "http://cdn2.spiritlhl.net/") | ||
check_cdn_file | ||
|
||
case $os in | ||
Linux) | ||
case $arch in | ||
"x86_64" | "x86" | "amd64" | "x64") | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-linux-amd64" | ||
;; | ||
"i386" | "i686") | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-linux-386" | ||
;; | ||
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64") | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-linux-arm64" | ||
;; | ||
*) | ||
echo "Unsupported architecture: $arch" | ||
exit 1 | ||
;; | ||
esac | ||
;; | ||
Darwin) | ||
case $arch in | ||
"x86_64" | "x86" | "amd64" | "x64") | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-darwin-amd64" | ||
;; | ||
"i386" | "i686") | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-darwin-386" | ||
;; | ||
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64") | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-darwin-arm64" | ||
;; | ||
*) | ||
echo "Unsupported architecture: $arch" | ||
exit 1 | ||
;; | ||
esac | ||
;; | ||
FreeBSD) | ||
case $arch in | ||
amd64) | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-freebsd-amd64" | ||
;; | ||
"i386" | "i686") | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-freebsd-386" | ||
;; | ||
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64") | ||
wget -O pt "${cdn_success_url}https://github.com/oneclickvirt/pingtest/releases/download/output/pingtest-freebsd-arm64" | ||
;; | ||
*) | ||
echo "Unsupported architecture: $arch" | ||
exit 1 | ||
;; | ||
esac | ||
;; | ||
*) | ||
echo "Unsupported operating system: $os" | ||
exit 1 | ||
;; | ||
esac | ||
|
||
chmod 777 pt | ||
cp pt /usr/bin/pt |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.