gpt4 book ai didi

zsh - 如何将 .bashrc 导出到 .zshrc?

转载 作者:行者123 更新时间:2023-11-29 08:40:26 29 4
gpt4 key购买 nike

我正在尝试从 bash 迁移到 zsh。

我将我的 .bashrc 直接复制到我的 .zshrc,当我再次尝试使用 bash 时它导致了很多错误。

如何将 .bashrc 导出到 .zshrc?

最佳答案

虽然 lhunath 的回答将我推向了正确的方向,但 zsh 似乎并没有自动获取 .profile 的来源。可以在 this superuser post 上找到有关此主题的很多有用信息。 .

我正在使用的改编是将常用别名和函数放在 .profile 中,并按如下方式手动获取它们:

~/.bashrc中:

source ~/.profile

~/.zshrc中:

[[ -e ~/.profile ]] && emulate sh -c 'source ~/.profile'

emulate是一个 zsh 内置命令。使用单个参数设置 zsh 选项以尽可能模拟指定的 shell。

关于zsh - 如何将 .bashrc 导出到 .zshrc?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/764600/

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