最常用的 fish shell 命令?

Most used fish shell commands?

我想知道我 运行 在我的鱼 shell 中使用最多的命令是什么。有没有办法从历史中提取这个?

为了比较,这里是the same with bash

抱歉,fish 不跟踪此信息。您的历史记录按 MRU 排序,但不会跟踪总使用次数。

在您报告的 issue 问题得到解决之前,这似乎有点像 bash 方式。我很乐意通过 history 命令的选项将其视为 Fish 的实际功能。

history | awk '{print }' | sort | uniq --count | sort --numeric-sort --reverse | head -10

517 git
314 drush
197 sudo
171 cd
115 man
103 echo
 95 vi
 81 dig
 67 set
 66 ls

我也将此作为一条鱼发布,Bash 在这里回答 https://askubuntu.com/a/717653/11929