Quick bash script to pull the latest chrome nightly to your very own desktop!
1 2 3 4 5 6 7 8 9 | #!/bin/bash LATEST="http://build.chromium.org/f/chromium/snapshots/Linux/"`curl http://build.chromium.org/f/chromium/snapshots/Linux/LATEST`"/chrome-linux.zip" wget $LATEST unzip chrome-linux.zip rm chrome-linux.zip if [ -x ~/builds/chrome-linux/ ]; then rm -rf ~/builds/chrome-linux/ fi mv chrome-linux ~/builds/ |
You’ll need to make the directory it’s going to download to.
$ mkdir ~/builds
Then add as a cron job to run every night && daily updates will come down the pipes!