#!/usr/bin/env python3 # Print the arguments that were passed to this script, # as a repr()'d Python list so you can see exactly what # the args were. import sys print(sys.argv) if not sys.stdin.isatty(): print("STDIN:") print(repr(sys.stdin.read()))