python - << EOF import sys vtup = sys.version_info version = vtup[0] * 100 + vtup[1] * 10 + vtup[2] if version < 240: sys.exit(1) sys.exit(0) EOF