yes, but your script will need to know hoe to handle this.the following will open a file who's name was passed to the script
if len(sys.argv) > 1: try: open_file(fname=sys.argv[1]) except: pass -- http://mail.python.org/mailman/listinfo/python-list
yes, but your script will need to know hoe to handle this.the following will open a file who's name was passed to the script
if len(sys.argv) > 1: try: open_file(fname=sys.argv[1]) except: pass -- http://mail.python.org/mailman/listinfo/python-list