mirror of
https://github.com/wcbing/wcbing-apt-repo.git
synced 2025-12-28 18:18:31 +08:00
9 lines
267 B
Bash
9 lines
267 B
Bash
WEB_CONTENT=$(curl -s "https://u.tools/download/")
|
|
|
|
X64_URL=$(echo $WEB_CONTENT | grep -o "https://[^ ]*amd64\.deb")
|
|
|
|
# https://open.u-tools.cn/download/utools_5.2.1_amd64.deb
|
|
VERSION=$(echo $X64_URL | cut -d '_' -f 2)
|
|
|
|
./check_downloader.py utools $VERSION $X64_URL
|