Skip to content

Instantly share code, notes, and snippets.

View Br3nda's full-sized avatar
🦋
MAKE ALL THE THINGS

Brenda Wallace Br3nda

🦋
MAKE ALL THE THINGS
View GitHub Profile
@Br3nda
Br3nda / maya2018install.sh
Created August 18, 2022 23:51 — 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