Install Software by script downloading software from website and navigating to folder
{\rtf1\ansi\ansicpg1252\cocoartf2513
\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
{\*\expandedcolortbl;;}
\paperw11900\paperh16840\margl1440\margr1440\vieww10800\viewh8400\viewkind0
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural\partightenfactor0
\f0\fs24 \cf0 #!/bin/bash\
\
\
#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