Skip to content

Instantly share code, notes, and snippets.

@zhaoz
zhaoz / updatechromium.sh
Created February 21, 2012 23:13 — forked from benvanik/updatechromium.sh
Update Chromium on Linux to the latest version
#!/bin/bash
cd ~/Downloads/
if [ ! -x /usr/bin/curl ]; then
echo "Didn't find curl at /usr/bin/curl. Install with 'sudo apt-get install curl'."
exit 1
fi
echo -n "Determining latest build... "