9 lines
132 B
Bash
Executable File
9 lines
132 B
Bash
Executable File
#!/bin/dash
|
|
|
|
export PATH=$PATH:/bin:/usr/bin
|
|
PYTHON=python
|
|
if [ -e /usr/bin/python2.6 ] ; then
|
|
PYTHON=python
|
|
fi
|
|
exec $PYTHON "$@"
|