我正在尝试创建一个cron作业,使用bash脚本从他们的网站下载最新版本的WhatsApp APK,并通过我的网站提供。
到目前为止,我可以使用以下内容从站点获取版本号(省略了用户代理部分):
wget -q -O - "$@" whatsapp.com/android | grep -oP '(?<=Version )([\d.]+)'
我可以使用以下命令下载APK:
wget http://www.whatsapp.com/android/current/WhatsApp.apk
那部分没问题。我无法弄清楚的是,只有当它比服务器上现有的APK更新时才能下载APK。该剧本应该如何?
由于我不是命令行专家,我想有一种比现在的方法更好的方法来实现这一点,所以如果你有任何建议,我会非常感激。
答案 0 :(得分:1)
好像你需要自己管理版本。
我会在文件名中存储带有版本号的apk文件,例如WhatsApp_<version-number>_.apk
。因此,下载较新文件的脚本可以如下:
# Get the local version
oldVer=$(ls -v1 | grep -v latest | tail -n 1 | awk -F "_" '{print $2}')
# Get the server version
newVer=$(wget -q -O - "$@" whatsapp.com/android | grep -oP '(?<=Version )([\d.]+)')
# Check if the server version is newer
newestVer=$(echo -e "$oldVer\n$newVer" | sort -n | tail -n 1)
#Download the newer versino
[ "$newVer" = "$newestVer" ] && [ "$oldVer" != "$newVer" ] && wget -O WhatsApp_${newVer}_.apk http://www.whatsapp.com/android/current/WhatsApp.apk || echo "The newest version already downloaded"
#Delete all files that not is a new version
find ! -name "*$newVer*" ! -type d -exec rm -f {} \;
# set the link to the latest
ln -sf $(ls -v1 | grep -v latest| tail -n1) latest