gpt4 book ai didi

ubuntu - 添加自定义脚本到 fish shell 配置

转载 作者:行者123 更新时间:2023-12-04 19:13:00 24 4
gpt4 key购买 nike

我想将脚本添加到 fish shell 配置,如 Ubuntu 上的默认 bash:

## Auto load nvm when there's a .nvmrc file
OLD_PWD=""
promptCommand() {
if [ "$OLD_PWD" != "$PWD" ] ;
then
OLD_PWD="$PWD"
if [ -e .nvmrc ] ;
then nvm use;
fi
fi
}
export PROMPT_COMMAND=promptCommand

但我没有找到 的文件配置 fish shell 。

任何人都已经在 中添加了自定义脚本 fish ?

谢谢 !

最佳答案

请引用以下链接
Frequently Asked Questions

How do I run a command every login? What's fish's equivalent to .bashrc?

Edit the file ~/.config/fish/config.fish, creating it if it does not exist (Note the leading period).

关于ubuntu - 添加自定义脚本到 fish shell 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48132001/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com