#! /bin/sh if [ -z "$1" ]; then echo "Usage: compyle file.py..." >&2 exit 1 fi python$PY_VER -m compileall "$@" && exec python$PY_VER -O -m compileall "$@"