aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/start-sim
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-11-27 23:51:59 +1000
committerDavid Walter Seikel2016-11-27 23:51:59 +1000
commitc0ff56729a59dc30589de6af6120d825fbaa8cc3 (patch)
tree1c7e2f842548a5c9fef566d2045f3ad8aac603cb /scripts/start-sim
parentWhite space and typo clean ups. (diff)
downloadopensim-SC_OLD-c0ff56729a59dc30589de6af6120d825fbaa8cc3.zip
opensim-SC_OLD-c0ff56729a59dc30589de6af6120d825fbaa8cc3.tar.gz
opensim-SC_OLD-c0ff56729a59dc30589de6af6120d825fbaa8cc3.tar.bz2
opensim-SC_OLD-c0ff56729a59dc30589de6af6120d825fbaa8cc3.tar.xz
Break out common script bits into their own file.
Diffstat (limited to '')
-rwxr-xr-xscripts/start-sim20
1 files changed, 3 insertions, 17 deletions
diff --git a/scripts/start-sim b/scripts/start-sim
index ed2b07f..72bb9ba 100755
--- a/scripts/start-sim
+++ b/scripts/start-sim
@@ -1,21 +1,7 @@
1#!/bin/bash 1#!/bin/bash
2 2
3# Figure out where we are, most of this mess is to troll through soft links. 3source common.sh
4PRG="$0" 4getPrgDir
5while [ -h "${PRG}" ] ; do
6 ls=$(ls -ld "${PRG}")
7 link=`expr "${ls}" : '.*-> \(.*\)$'`
8 if expr "${link}" : '.*/.*' > /dev/null; then
9 PRG="${link}"
10 else
11 PRG=$(dirname "${PRG}")/"${link}"
12 fi
13done
14PRGDIR=$(dirname "${PRG}")
15pushd ${PRGDIR} >/dev/null
16PRGDIR=$(pwd)
17popd >/dev/null
18
19 5
20USER=$(whoami) 6USER=$(whoami)
21console_name="OpenSim_console" 7console_name="OpenSim_console"
@@ -78,7 +64,7 @@ if [ "x$tgt" = "xROBUST" ]; then
78elif [ "x$inventory" = "x" ]; then 64elif [ "x$inventory" = "x" ]; then
79 exe="OpenSim" 65 exe="OpenSim"
80 # Grab the first Section line of the sims .xml file, cut it down to the name. 66 # Grab the first Section line of the sims .xml file, cut it down to the name.
81 title=$(grep "<Section " ../config/${tgt}/*.xml | head -n 1 | cut -d '"' -f 2 ) 67 title=$(getSimName ${num})
82fi 68fi
83 69
84case $(basename $0) in 70case $(basename $0) in