8 lines
135 B
Bash
Executable file
8 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
|
|
APP=`basename $0`
|
|
DIR=`dirname $0`
|
|
|
|
cd "$DIR"
|
|
export PYTHONPATH="$PYTHONPATH:."
|
|
exec /usr/bin/env python -OO "$APP.py" "$@"
|