This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Is Dropbox Installe | |
if [ ! -d ""$HOME"/Dropbox" ]; then | |
e_error "DROPBOX NOT FOUND" | |
e_error "Without Dropbox we will exit" | |
e_error "EXITING" | |
exit 1 | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Determine working directory | |
install_dir=`dirname $0` | |
# Install unlicensed Office 2016 | |
/usr/sbin/installer -dumplog -verbose -pkg $install_dir/"Microsoft_Office_2016_15.24.0_160709_Installer.pkg" -target "$3" | |
# Install Office 2016 15.24.0 Updates |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Determine working directory | |
install_dir=`dirname $0` | |
# Install unlicensed Office 2016 | |
/usr/sbin/installer -dumplog -verbose -pkg $install_dir/"Microsoft_Office_2016_Installer.pkg" -target "$3" |