#!/bin/sh## Choose the python we need. Explanation:# a) '''\' translates to \ in shell, and starts a python multi-line string# b) "" strings are treated as string concat by python, shell ignores them# c) "true" command ignores its arguments# c) exit before the ending ''' so the shell reads no further# d) reset set docstrings to ignore the multiline comment code#"true" '''\'PREFERRED_PYTHON=/Library/Frameworks/Python.framework/Versions/2.7/bin/pythonALTERNATIVE_PYTHON=/Library/Frameworks/Python.framework/Versions/3.6/bin/python3FALLBACK_PYTHON=python3
if [ -x $PREFERRED_PYTHON ]; thenecho Using preferred python $ALTERNATIVE_PYTHONexec $PREFERRED_PYTHON "$0" "$@"elif [ -x $ALTERNATIVE_PYTHON ]; thenecho Using alternative python $ALTERNATIVE_PYTHONexec $ALTERNATIVE_PYTHON "$0" "$@"elseecho Using fallback python $FALLBACK_PYTHONexec python3 "$0" "$@"fiexit 127'''
__doc__ = """What this file does"""print(__doc__)import platformprint(platform.python_version())