展开全部
Linux下可用python来编写,代码如下:
#!/usr/bin/python
while True:
file = raw_input('Input file name:(input "q" to quit)')
if file == 'q':
break
file_ = open(file).read()
list_ = list(file_)
new_file = ''
for x in list_:
if x != '^' and x != 'M':
new_file = new_file + x
file_ = open(file,'w')
file_.write(new_file)
file_.close()
这个python脚本可以无限循环,循环的过程中你可以不断地输入文件的名字,知道你输入q终止。不知道是否能达到你的要求。 你可以把这个脚本命名为rmstr.py,然后./rmstr.py执行程序。
#!/usr/bin/python
while True:
file = raw_input('Input file name:(input "q" to quit)')
if file == 'q':
break
file_ = open(file).read()
list_ = list(file_)
new_file = ''
for x in list_:
if x != '^' and x != 'M':
new_file = new_file + x
file_ = open(file,'w')
file_.write(new_file)
file_.close()
这个python脚本可以无限循环,循环的过程中你可以不断地输入文件的名字,知道你输入q终止。不知道是否能达到你的要求。 你可以把这个脚本命名为rmstr.py,然后./rmstr.py执行程序。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询