How to use aliases defined in .bashrc in other scripts?

后端 未结 6 1047
情话喂你
情话喂你 2020-11-27 06:36

In ~/.bashrc, I defined some aliases. But I cannot use them in other shell scripts, where I can only use aliases defined right there. Even though I sourced bashrc, it still

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-27 07:24

    .bashrc is meant for one purpose: to configure the environment for your interactive shells. If you have code that you want shared between your .bashrc and other scripts, then it belongs in a separate file that is sourced by each of your .bashrc and shell script.

提交回复
热议问题