May 23, 2025
AI Governance Solutions, AI-Powered Dashboards, AIOps, Artificial Intelligence, DevOps and AIOps, IoT, IT Automation, Machine Learning, Machine Learning in IT, Shell Scripting
actsupp-r0cks
0
Introduction In a world where digital systems underpin nearly every function of modern business, the old ways of managing IT infrastructure are fast becoming obsolete. Organizations can no longer afford to merely respond to problems—they must anticipate and eliminate them before they cause disruption. Enter AIOps: the new frontier of intelligent infrastructure management. By leveraging [...]
Capture top command output in a file
Capture top command output in a file The output of top command can be captured as follows top -b -n1 > /tmp/top1.txt This will run top command once and write the output to a file, then exit. To run top 3 times with an interval of 5 seconds, run the following command top -b -n3 […]
Difference between grep and egrep
Difference between grep and egrep egrep is extended grep which includes additional regular expression metacharacters like ?, +, () and | Eg: egrep “(People|sense)” values.txt This command searches for patterns People and sense in file values.txt