fish shell学习笔记

1、debian安装fish shell

# 更新软件包列表
apt update 
# 安装fish shell
apt install fish
# 启动fish shell
fish
# 将当前用户的默认shell更改为Fish shell
chsh -s /usr/bin/fish

2、在fish shell中启用acme脚本

# 编辑fish shell的配置文件
vi ~/.config/fish/config.fish
# 将acme脚本中环境变量添加到fish shell的环境变量中
source ~/.acme.sh/acme.sh.env
# 重启fish shell以使更改生效
exec fish