Fish shell:如何禁用帮助消息?

Fish shell:如何禁用帮助消息?

当我开始钓鱼时,它会打印:

Welcome to fish, the friendly interactive shell
Type `help` for instructions on how to use fish

然后就是提示。

我实际上已经使用鱼一段时间了,所以我不需要这个欢迎信息。我怎样才能禁用它?

答案1

(从https://fishshell.com/docs/current/faq.html#how-do-i-change-the-greeting-message

改变变量的值鱼问候语或创建一个fish_greeting 函数。例如,要删除问候语,请使用:

set -U fish_greeting

或者,如果您不想使用通用变量,请使用:

set -g fish_greeting

配置文件这在我的系统上有效)。

答案2

这已经得到回答了这里但 tldr 你会想使用这个命令set -U fish_greeting ""

您也可以通过在双引号中键入您想要的内容来自定义欢迎提示,例如set -U fish_greeting "

相关内容