Configuration
fish shell:如何禁用幫助資訊?
當我開始釣魚時,它會列印:
Welcome to fish, the friendly interactive shell Type `help` for instructions on how to use fish
然後是提示。
我實際上已經使用了一段時間的魚,所以我不需要這個歡迎資訊。我怎樣才能禁用它?
這已經在這裡得到了回答,但是 tldr 你會想要使用命令
set -U fish_greeting ""
您也可以通過在雙引號中輸入您想要的內容來自定義歡迎提示,例如
set -U fish_greeting "🐟"
(來自https://fishshell.com/docs/current/faq.html#how-do-i-change-the-greeting-message)
更改變數fish_greeting的值或創建 fish_greeting 函式。例如,要刪除問候語,請使用:
set -U fish_greeting
或者,如果您不想使用通用變數,請使用:
set -g fish_greeting
在config.fish中(這是在我的系統上工作的)。