这条命令是分析.bash_history的历史命令,根据使用次数排序前10个。
 
sed -e "s/| /\n/g" ~/.bash_history | cut -d ' ' -f 1 | sort | uniq -c | sort -nr | head
 
这里先记录一下。。。。。。。