Posted in Python onJanuary 28, 2014
#diff.py #!/bin/env python import sys if len(sys.argv) <> 3: print "Usage: " + sys.argv[0] + "file1 file2" sys.exit(-1) file1 = sys.argv[1] file2 = sys.argv[2] list1 = {} for line in open(file1): list1[line.split()[0]] = 1 for line in open(file2): key = line.split()[0] if key not in list1: sys.stdout.write(line)
python命令行参数sys.argv使用示例
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@