Skip to content

Instantly share code, notes, and snippets.

View reedwade's full-sized avatar
😺

Reed Wade reedwade

😺
View GitHub Profile

Keybase proof

I hereby claim:

  • I am reedwade on github.
  • I am kittensnz (https://keybase.io/kittensnz) on keybase.
  • I have a public key ASBj0_cYN2Vwba_0ZttyhNaP43t4cuOaXcNNKJty2HPPsgo

To claim this, I am signing this object:

@reedwade
reedwade / maya2017install.sh
Last active May 11, 2017 20:39 — forked from borgfriend/maya2017install.sh
Maya 2017 Installation on Ubuntu 16.04
#!/bin/bash
#Make sure we’re running with root permissions.
if [ `whoami` != root ]; then
echo Please run this script using sudo
echo Just type “sudo !!”
exit
fi
#Check for 64-bit arch
if [ `uname -m` != x86_64]; then