little tips and tricks, which i stumbled upon randomly

Monday, July 29, 2013

Readable folder size command in SUN Solaris

1:46 AM By

to get folder size in readable format use
du -sh *| sort -n
 
 

Thursday, July 4, 2013

Find string in file Unix

find . -exec grep -l "search string" {} \;