1 2 3 4 5 6 7 8 9 10
#!/bin/bash cd "${0%/*}" if [ `uname` == 'Darwin' ]; then ./myapp else export LD_LIBRARY_PATH="`pwd`/lib" bin/myapp fi