配置fish为默认shell
查看所有shell及位置
cat /etc/shells
输出
#List of acceptable shells for chpass(1).
#Ftpd will not allow users to connect who are not using
#one of these shells.
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
查看当前默认shell
echo $SHELL
不过在使用fish的时候并没有什么用 没有输出
在不是fish的时候貌似可以
输出:
/usr/local/Cellar/fish/3.1.0_1/bin/fish
我用Homebrew装的
这时想要设置fishshell为默认需要先讲fish的位置加入到
/etc/shells
里不然会提示
non-standard shell
添加好之后使用
chsh -s /usr/local/Cellar/fish/3.1.0_1/bin/fish
就可以了

本文详细介绍如何将FishShell设置为Unix或类Unix系统的默认Shell。首先,通过cat /etc/shells命令查看系统中可接受的Shell列表。然后,检查当前默认Shell是否为FishShell,如果不是,使用echo $SHELL命令确认当前Shell。接着,确保FishShell的位置已添加到/etc/shells文件中,避免遇到non-standard shell错误。最后,使用chsh命令更改默认Shell为FishShell。
1万+

被折叠的 条评论
为什么被折叠?



