Exemplos de Uso
$
du -sh /home/* | sort -rh | head -5
$
netstat -tn | awk "{print $5}" | cut -d: -f1 | sort | uniq -c | sort -rn | head -10
$
ps aux | awk "$3 > 50.0"
$
find . -type f | sed "s/.*\.//" | sort | uniq -c | sort -rn
$
ss -tlnp | awk "{print $1,$4,$6}"
$
grep -r "texto" /etc/*.conf
$
mysql -u root -p -e "SELECT table_schema, ROUND(SUM(data_length+index_length)/1024/1024/1024,2) GB FROM information_schema.TABLES GROUP BY table_schema ORDER BY GB DESC;"