Skip to content

Instantly share code, notes, and snippets.

@skl-songkiat
Created September 27, 2022 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skl-songkiat/a099e76e4608eb813dfab4bb6101198e to your computer and use it in GitHub Desktop.
Save skl-songkiat/a099e76e4608eb813dfab4bb6101198e to your computer and use it in GitHub Desktop.
import sys, getopt
def main(argv):
inputfile = ''
outputfile = ''
try:
opts, args = getopt.getopt(argv, "h:i:o:",["ifile=","ofile="])
except getopt.GetoptError:
print('GetoptError test.py -i <inputfile> -o <outputfile>')
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print('test.py -i <inputfile> -o <outputfile>')
sys.exit()
elif opt in ('-i', '--ifile'):
inputfile = arg
elif opt in ('-o', '--ofile'):
outputfile = arg
print('input file is "', inputfile)
print('output file is "', outputfile)
if __name__ == "__main__":
main(sys.argv[1:])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment