作为测试人员(在所有方面),我需要检查日志文件中的错误。不幸的是,生成的输出文件(file-YYYY-MM-DD.log)显示了各种信息,而不仅是错误(或“有问题的东西”)。
我的问题是;如何隐藏不需要的行并生成包含偏差(错误,警告等)的输出文件(日志)?
例如,我想隐藏:
| I | variable text I do not want, location: /path/to/foo/bar
| W | service X stopped
| W | service X started
我想要的脚本的最理想结果是:
-> Ask question: "Do you want to hide information and warning messages? |
-> Answer: yes --> hide all | I | message (like: no new foo's found in: /location/to/foo.
-> Answer: no --> do nothing (closes script)
数据来自Unix环境,但是脚本将在Windows环境中运行。
谢谢