@Andy
Yes, first try out the solution in the guide, it should work. If not then give us feedback, we will help you.
]]>I’m a complete newbie to Linux, but I have a co-worker helping me out. Unfortunately, none of his solutions are working yet.
I need to search logs to find Windows logon/logoff data within a date range. This is what he’s given me so far, but it’s been running for two hours with no data returned.
# find /var/log/remote3 -type f -newermt 2019-03-01 -print0 | xargs -0 zgrep --color=always -e 4624 -e 4634 | zgrep --color=always -i
What do you think?
It seems your solution above is MUCH easier. I will try that once this string stops/fails/disconnects…
Thank you,
]]>I need to search a particular string in the entire server and exclude the link files. Once find the string replace with a new string. I need a shell script for this.
Thanks
Raj
@nizam
You can try any of the four ways in this guide: https://www.tecmint.com/run-commands-on-multiple-linux-servers/
]]>