#!/bin/bash -e clear echo "============================================" echo " DSX Install Script 1.0" echo "============================================" echo -e "" echo -e "This will install DSX (DS7-1.2.4) Content Management System In This Folder." echo "Run Install? (y/n)" read -e run if [ "$run" == n ] ; then exit else echo "============================================" echo " DSX Is Now Installing" echo "============================================" wget -O DS7.zip http://www.seaverns.com/downloads/DS7-1.2.4.zip unzip -o DS7.zip -d DSX/ sleep 2 rm DS7.zip fi rm Install