Sorcerer's IsleCode Lucee on Jetty / files

 1#!/bin/bash
 2
 3echo -e "\n\e[1;97mWelcome to Lucee on Jetty!\e[0m\n"
 4
 5cd `dirname $0`/lucee-base
 6echo "In lucee-base directory [`pwd`]"
 7
 8echo -e "Starting Jetty... (Use Ctrl-C to shutdown server.)\n"
 9java -jar ../jetty-home/start.jar
10
11echo -e "\nJetty stopped.\n"
12read -rs -n 1 -p "Press any key to continue..."