Skip to content

Instantly share code, notes, and snippets.

@shellexy
Created November 7, 2011 13:47
Show Gist options
  • Save shellexy/1345015 to your computer and use it in GitHub Desktop.
Save shellexy/1345015 to your computer and use it in GitHub Desktop.
下载 chromium 每日构建版
#!/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