10 lines
161 B
Bash
Executable File
10 lines
161 B
Bash
Executable File
# !/bin/bash
|
|
|
|
# go to directory where script resides
|
|
SCRIPT=`readlink -f $0`
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
cd $SCRIPTPATH
|
|
|
|
export LD_LIBRARY_PATH=.
|
|
./commander &
|