【题目要求】
查看使用最多的10个命令
【核心要点】
history 或者 ~/.bash_history
sort uniq
【脚本】
#!/bin/bash # history就是调用cat ~/.bash_history
cat ~/.bash_history | sort | uniq -c | sort -nr | head -n 1
【题目要求】
查看使用最多的10个命令
【核心要点】
history 或者 ~/.bash_history
sort uniq
【脚本】
#!/bin/bash # history就是调用cat ~/.bash_history
cat ~/.bash_history | sort | uniq -c | sort -nr | head -n 1