Files
MacAdmin/Software/Mathematica/install_Mathematica.sh
Zack T 754ffdfc28 v1.2 = Changed the interpreter to bash
+ Changed the interpreter to bash (was causing issues)
2018-01-31 22:55:23 -07:00

30 lines
880 B
Bash
Executable File

#!/bin/bash
###################################################################################################
# Script Name: install_Mathematica.sh
# By: Zack Thompson / Created: 1/10/2018
# Version: 1.2 / Updated: 1/31/2018 / By: ZT
#
# Description: This script silently installs Mathematica.
#
###################################################################################################
/bin/echo "***** Install Mathematica process: START *****"
##################################################
# Define Variables
# Set working directory
pkgDir=$(/usr/bin/dirname $0)
##################################################
# Bits staged...
# Install Mathematica
/bin/echo "Installing Mathematica..."
/bin/mv "${pkgDir}/Mathematica.app" /Applications
/bin/echo "Install complete!"
/bin/echo "***** Install Mathematica process: COMPLETE *****"
exit 0