Created
November 7, 2011 13:47
-
-
Save shellexy/1345015 to your computer and use it in GitHub Desktop.
下载 chromium 每日构建版
This file contains hidden or 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
#!/bin/sh | |
get_chromium_snapshots(){ | |
# 获取 snapshots 版 chromium-browser | |
VERSION="`wget -O- -nv http://build.chromium.org/f/chromium/snapshots/chromium-linux-reliability/LATEST`" | |
URL="http://build.chromium.org/f/chromium/snapshots/chromium-linux-reliability/$VERSION/chrome-linux.zip" | |
## 考虑已经下载的情况 | |
touch VERSION | |
[ "`cat VERSION`" == $VERSION ] && return | |
## 下载 | |
mv chrome-linux.zip chrome-linux.zip.1 | |
time wget $URL && echo $VERSION > VERSION || exit 1 | |
#time axel $URL && echo $VERSION > VERSION | |
} | |
get_chromium_snapshots |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment