1@script_shell@
2
3# DBLIB does not work (on Linux at least) when this limit is > 1024
4ulimit -n 1536 > /dev/null 2>&1
5
6syb="@SYBASE_PATH@"
7if test -d "$syb" -o -z "$SYBASE"; then
8    SYBASE=$syb
9    export SYBASE
10fi
11
12if [ ".$1" = ".-run-script" ]; then
13   shift
14   exec "$@"
15fi
16exec $CHECK_EXEC "$@"
17