Skip to content

Instantly share code, notes, and snippets.

@h-s-l
h-s-l / INSTALL
Last active July 6, 2016 14:55
Ubuntu (and derivatives) installation script for DJMcMayhem's V ESOLANG.
#!/usr/bin/env bash
#AUTHOR: harry (aHNs) <aHNs@tuta.io> FC5A 6DAE AD7C F721 561A C059 D376 6497 DD9F F961
#DESCRIPTION: Self deleting install script for V by DJMcMayhem https://github.com/DJMcMayhem/V
#checks user is root, exits if not
if [[ $(id -u) != "0" ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi
function v_installer {
if [[ ! $(grep "neovim-ppa/unstable" /etc/apt/sources.list /etc/apt/sources.list.d/*) ]]; then