用于在远程计算机上的日志文件中搜索字符串并复制匹配文本的脚本
我想编写一个脚本(在基于Linux的系统上)执行以下操作:
- 我有一个远程机器列表,例如在每台机器上的mc1、mc2、mc3等
- ,我有一个日志文件例如/ var/log/mail.log
- 我有一个唯一的 id
- 这个唯一的 id 将仅出现在任何一台机器上的一个日志文件中
- 现在,我必须在这些机器上存储的所有日志文件中搜索此 id 并获取匹配的线。
我正在考虑使用 bash/grep/ssh 来执行此操作,但不知道如何:( 谁能帮我完成这个任务:)
I would like to write a script(on linux based systems) that does the following :
- I have a list of remote machines say for e.g mc1, mc2, mc3 and so on
- on each of those machines, i have a logfile say for e.g /var/log/mail.log
- I have a unique-id with me
- This unique-id will be present in only one logfile on any of those machines
- Now, I have to search for this id in all those logfiles stored on those machines and get the matched line.
I am thinking of using bash/grep/ssh to do this, but dont know how :(
Can anyone please help me out to accomplish this :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试以下操作吗:
can you try the following: