Linux CentOS

Linux CentOS
How To Install RAPID SSL
April 1, 2015
0
Linux CentOS Security
Poodle Virus – What & How To Secure Server from it
November 20, 2014
0
, ,
Linux CentOS
Deleting Files Larger Than 10MB
November 5, 2014
0
find /home/bob/dir -type f -name *.log -size +10M -exec rm -f {} ;
Linux CentOS
Displaying Top 20 Largest Files in current directory
June 12, 2014
0
,

Command To Run in Terminal

find . -type f -exec ls -s {} ; | sort -n -r | head -20