Search Suggest

Shell Script
Shell Script

Monitor RAM utilization on Server using Shell Script

This tutorial will help you to find out RAM utilization on linux server using shell scripting. you can deploy this script on your  production server …

Monitor Disk space using shell script

This script will help you to monitor disk space of your production server when it reach the set threshold limit, So that you could take initiative ac…

command to find keyword from file

grep command to find keyword from file # cat test 192.168.0.1 192.168.0.2 192.168.0.3 Syntax: grep “pattern”  file_name # grep "192.168.0.1"…

Sed command delete pattern match keyword from file

# cat emaillist shahzad@example.com shahzad.in@example.com shahzad.out@example.com alam@example.com alam.out@example.com alam.in@example.com Delete a…