Script to download and install package by jamf on mac
#Go to shared
cd /Volumes/Macintosh\ HD/Users/
#download tcl zip
curl -LO http://downloads.sourceforge.net/tcl/tcl8.6.5-src.tar.gz
#Unzip files
tar -xvf tcl8.6.5-src.tar.gz
#Go to TCL
cd /Volumes/Macintosh\ HD/Users/Shared/tcl8.6.5/unix
#run the command
./configure
exit 0
#download expect zip
curl -LO http://prdownloads.sourceforge.net/expect/expect5.45.tar.gz
#Unzip files
tar -xvf expect5.45.tar.gz
#Go to Expect
cd /Volumes/Macintosh\ HD/Users/Shared/expect5.45
#run the command
./configure
exit 0
Comments
Post a Comment