Posts tagged as:

find command

I need to find and list all hidden files including directories on a Linux server (CentOS). How can I recursively list all hidden files and directories? How do I save result in a text file? And How do I delete all hidden files/directories ?

{ 0 comments }

How To Flush Sendmail Queue In Linux

by lifeLinux on May 16, 2011

Check pending mail To check how many pending mail, type the following command # mailq

{ 0 comments }

Find Large Files In Linux

by lifeLinux on May 13, 2011

Find files larger than a certain size This example finds all the files under /root directory which are larger than 50k [root@lifelinux ~]# find /root -size +50k Sample output /root/ioncube/ioncube_loader_lin_5.3_ts.so /root/ioncube/ioncube_loader_lin_4.1.so /root/ioncube/ioncube_loader_lin_5.1.so /root/ioncube/ioncube_loader_lin_4.2.so …

{ 0 comments }