Root/
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | case "${0##*/}" in |
| 4 | pywrap.sh) arg1="";; |
| 5 | *) arg1="$0.py" ;; |
| 6 | esac |
| 7 | |
| 8 | for bin in python python2 python2.7 python2.6 python2.5 python2.4; do |
| 9 | case "$($bin -V 2>&1)" in |
| 10 | "Python 2"*) exec $bin $arg1 "$@" ;; |
| 11 | esac |
| 12 | done |
| 13 | |
| 14 | echo "Unable to find a Python 2.x interpreter for executing ${arg1:+$arg1 }$@ !" >&2 |
| 15 | exit 1 |
| 16 |
