Skip to content

Instantly share code, notes, and snippets.

View anderslanglands's full-sized avatar

Anders Langlands anderslanglands

View GitHub Profile
@anderslanglands
anderslanglands / maya2018install.sh
Created April 7, 2019 21:58 — forked from nrtkbb/maya2018install.sh
Maya 2018 Installation on Ubuntu 18.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