Skip to content

Instantly share code, notes, and snippets.

@mikekasprzak
Last active October 16, 2016 18:45
Show Gist options
  • Save mikekasprzak/be8200cbf420fc034d32 to your computer and use it in GitHub Desktop.
Save mikekasprzak/be8200cbf420fc034d32 to your computer and use it in GitHub Desktop.
Gets the latest version of Chromium, and installs it in the current directory
# get_chromium.sh - Gets the latest version of Chromium, and installs it in the current directory
#!/bin/bash
wget https://download-chromium.appspot.com/dl/Linux_x64 -O /tmp/chromium.zip
rm -fr .chromium-linux
unzip -o /tmp/chromium.zip
mv chrome-linux .chromium-linux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment