1 #!/usr/local/env python 2 import os, sys 3 nargs = len(sys.argv) 4 if not 3 <= nargs <= 5: 5 print "usage: %s search_text replace_text [inputfiel [outputfile]] " % os.path.basename(sys.argv[0]) #友好交互性提示 6 else : 7 stext = sys.argv[1] #获取当前环境参数 即为$search_text 8 rtext = sys.argv[2] #同上 9 if nargs > 3: 10 input_file = open(sys.argv[3]) 11 if nargs > 5: 12 output_file = open(sys.argv[4], ‘w‘) 13 for s in input_file: 14 output_file.write(s.replace(stext, rtext))
15 output_file.close() 16 input_file.close()
由于我第一次执行时实在windows下的python gui中的shell命令行执行一直提示 SyntaxError: invalid syntax的错误,后来才发现是执行环境出问题了。
主要实现功能为: 将文本内容serach_text替换成replace_text内容,如果有输入输出文件,则将inputfile中的search_text内容替换成replace_text内容,并将其输出到outputfile文件中。
与大家共勉!
时间: 2024-10-01 07:45:58