魚殼(Fish Shell):如何移除歡迎訊息

如何在魚殼(Fish Shell)中移除 “Welcome to fish, the friendly interactive shell” 歡迎訊息。

我遇到了這個「問題」。

每次打開 shell 時,我都會看到這三行文字。

這是魚殼(Fish Shell)的預設訊息。

我想要將它們移除。

Before

以下是我所做的方法。

我打開了 ~/.config/fish/config.fish

code ~/.config/fish/config.fish

文件內容如下:

if status is-interactive
 # Commands to run in interactive sessions can go here
end
fish\_add\_path /opt/homebrew/opt/[[email protected]](/cdn-cgi/l/email-protection)/bin

我在最後加上了 set fish_greeting ""

if status is-interactive
 # Commands to run in interactive sessions can go here
end
fish\_add\_path /opt/homebrew/opt/[[email protected]](/cdn-cgi/l/email-protection)/bin

set fish\_greeting ""

現在我的提示符如下:

After