mirror of
https://github.com/juewuy/ShellCrash.git
synced 2026-03-10 23:41:22 +00:00
11 lines
247 B
Bash
11 lines
247 B
Bash
. "$CRASHDIR"/libs/set_proxy.sh
|
|
#$1:目标地址 $2:禁用proxy
|
|
web_get_lite() {
|
|
[ -z "$2" ] && setproxy
|
|
if curl --version >/dev/null 2>&1; then
|
|
curl -ksSl --connect-timeout 3 "$1" 2>/dev/null
|
|
else
|
|
wget -Y on -q --timeout=3 -O - "$1"
|
|
fi
|
|
}
|