Skip to content

Instantly share code, notes, and snippets.

@nazar-pc
Created August 3, 2017 22:45
Show Gist options
  • Save nazar-pc/d27b8029e45930569bd1eb51b4de6cb8 to your computer and use it in GitHub Desktop.
Save nazar-pc/d27b8029e45930569bd1eb51b4de6cb8 to your computer and use it in GitHub Desktop.
Update chromium Nightly on Linux
#!/bin/bash
cd /home/nazar-pc/chromium
wget -O chromium.zip https://download-chromium.appspot.com/dl/Linux_x64?type=snapshots
shopt -s extglob
rm -rf !(chromium.zip|update)
shopt -u extglob
unzip chromium.zip
mv chrome-linux/* .
rmdir chrome-linux
rm chromium.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment