Created
August 3, 2017 22:45
-
-
Save nazar-pc/d27b8029e45930569bd1eb51b4de6cb8 to your computer and use it in GitHub Desktop.
Update chromium Nightly on Linux
This file contains 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/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