Command line to download latest Chromium nightly build


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. # use curl to get the latest build number and use wget to get the file
  2. wget http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/`curl http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/LATEST`/chrome-win32.zip
  3.  
  4. # use wget only
  5. wget http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/`wget -q -O - http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/LATEST`/chrome-win32.zip
  6.  
  7. # use tinyurl to shorten the URL for the build number
  8. wget http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/`curl -L http://tinyurl.com/dazx4y`/chrome-win32.zip
  9.  
  10. # use tinyurl to shorten the URL for the build number (wget only)
  11. wget http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/`wget -q -O - http://tinyurl.com/dazx4y`/chrome-win32.zip

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.