That worked perfectly. Thank You
Now...onto the next problem.
Here is the script:
!/bin/sh
export LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"
D1=$(readlink -f "$0")
D2=$(dirname "${D1}")
cd "${D2}"
if [ -e ts3server_linux_x86 ]; then
if [ -z "`uname | grep Linux`" -o ! -z "`uname -m | grep 64`" ]; then
echo "Do you have the right TS3 Server package for your system? Yo
fi
./ts3server_linux_x86 $@
elif [ -e ts3server_linux_amd64 ]; then
if [ -z "`uname | grep Linux`" -o -z "`uname -m | grep 64`" ]; then
echo "Do you have the right TS3 Server package for your system? Yo
fi
./ts3server_linux_amd64 $@
elif [ -e ts3server_freebsd_x86 ]; then
if [ ! -z "`uname | grep Linux`" -o ! -z "`uname -m | grep 64`" ]; then
echo "Do you have the right TS3 Server package for your system? Yo
fi
./ts3server_freebsd_x86 $@
elif [ -e ts3server_freebsd_amd64 ]; then
if [ ! -z "`uname | grep Linux`" -o -z "`uname -m | grep 64`" ]; then
echo "Do you have the right TS3 Server package for your system? Yo
fi
./ts3server_freebsd_amd64 $@
else
echo 'Could not find binary, aborting'
fi
Here is the error I receive when running the script: ./ts3server_minimal_runscript.sh: line 31: ./ts3server_linux_x86: not found
I used the proper command - tar xvfz teamspeak3-server_linux-xxx-xx-x-x-x.tar.gz - to unpack the package, and can see the "ts3server_linux_x86" file under the directory (it is shaded green in my Putty session), but, I can't run it manually from there either.
I am wondering if the tar command is not unpacking it properly or if I'm missing something else here.
Edit: I will also be posting about this latest issue on the Teamspeak forum; but, as this is OpenWRT, I figured there'd be a lot of good expertise here as well that might be able to help. 
(Last edited by jcpt928 on 1 May 2014, 16:33)