A nice script to find out the no of connection from a particular IP address to the apache
root@sahab-desktop# netstat -n|grep :80|awk {'print $5'}|awk -F: {'print $1'}>netlist;for i in `sort -u netlist` ;do echo -n$i"->";grep -c $i netlist; done;How to remove frozen messages from mail queue?(exim)
This command will help you to remove the frozen messages from the mail queue.exim -bp|grep '*** frozen ***' |awk {'print $3'} |xargs exim -Mrm
Command to find all of the files which have been accessed within the last 10 days
The following command will find all of the files which have been accessed within the last 10 daysfind / -type f -atime -10 > Monthname.files
This command will find all the files under root, which is ‘/’, with file type is file. ‘-atime -30′ will give all the files accessed less than 10 days ago. And the output will put into a file call Monthname.files.
Find and Remove the editor backup files
find . -name '*~' -type f -printfind . -name '*~' -type f -print |xargs rm -f
No comments:
Post a Comment