我有一个脚本可以远程登录到一个盒子里,运行一个命令,然后保存输出。之后我运行另一个脚本,该脚本解析输出文件,将其与位于另一个文件中的关键字进行比较以进行匹配。如果匹配了一行,它应该将整行(从原始 telnet 输出)保存到一个新文件中。
这是处理解析文本的脚本部分:
def parse_file
filter = []
temp_file = File.open('C:\Ruby193\scripts\PARSED_TRIAL.txt', 'a+')
t = File.open('C:\Ruby193\scripts\TRIAL_output_log.txt')
filter = File.open('C:\Ruby193\scripts\Filtered_text.txt').readlines
t.each do |line|
filter.each do |segment|
if (line =~ /#{segment}/)
temp_file.puts line
end
end
end
t.close()
temp_file.close()
end
目前,它只保存位于数组中的最后一个运行字符串filter
并将其保存到temp_file
. 看起来循环没有运行数组中的所有字符串,或者没有全部保存。我在文本文件中放置了五个字符串Filtered_text.txt
。它只会将我最后匹配的行打印到temp_file
.