Skip to content

Instantly share code, notes, and snippets.

View mquandalle's full-sized avatar

Maxime Quandalle mquandalle

View GitHub Profile
@mquandalle
mquandalle / install-ethereal.sh
Last active August 29, 2015 14:01 — forked from maran/install
Install go-ethereum client on Ubuntu 14.04
#!/bin/sh
if ! lsb_release -sr | grep 14.04 > /dev/null; then
echo "This script is made for Ubuntu 14.04, this probably won't work."
echo -p "Do you want to try it anyway? (y/n) " -n 1 -r
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
exit 1
fi
fi