将函数添加到 ~/.zshrc

将函数添加到 ~/.zshrc

我正在尝试应用以下内容:https://stackoverflow.com/questions/58549853/compiling-header-files-for-c-using-vscode-code-runner

但是当我打开时,我在复制和粘贴函数 cppcompile 的部分上卡住了/错过了

sudo code ~/.zshrc

因为按照所有步骤操作后,当我尝试编译我的程序时,我得到了以下内容:

bash: cppcompile: command not found

那么如何向 ~/.zshrc 添加函数?(就我个人而言,我只是按照上面说的复制并粘贴,或者也许有正确的方法来做到这一点?

答案1

.zshrc打开新 shell 时执行。其中的更改不会自动影响现有 shell。因此:

  • 打开一个新的 shell,或者
  • 使用该命令. ~/.zshrc(是的,它以点开头,后跟一个空格)在当前 shell 中再次执行该文件

相关内容