Skip to content

Instantly share code, notes, and snippets.

View lockjs's full-sized avatar

James Lock lockjs

  • Leeds, England
View GitHub Profile
@lockjs
lockjs / VBoxInstall.sh
Created January 12, 2014 10:02
Simple shell script to install VirtualBox and Extensions for Linux Mint (Ubuntu / Debian[?])
#!/bin/bash
# Install VirtualBox
echo "Do you want to install VirtualBox? [Y/n]"
read INPUT
if [[ "$INPUT" == 'Y' || "$INPUT" == 'y' ]]; then
# Select major version
DEFAULT=4.2
echo "Select version e.g. $DEFAULT"
read VER