ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10
Category: Linux
Chmod only directories recursively
find /path/you/want -type d -exec chmod 533 {} ;
Chmod only files recursively
find /path/you/want -type f -exec chmod 644 {} ;
ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10
find /path/you/want -type d -exec chmod 533 {} ;
find /path/you/want -type f -exec chmod 644 {} ;