Shell 综合案例

打印出10条最常用的命令
cat ~/.bash_history |cut -d' ' -f1 |sort|uniq -c|sort -rnk 1|head
找出指定目录中最大的10个文件 
du -ak [DIRECTORY] | sort -nrk 1 | head

你可能感兴趣的:(Shell 综合案例)