0

我的 unix 系统上有 .profile 文件。我在另一个文件中添加了一些变量(文件名= .others)。
我想在 .profile 文件中链接这个文件。每次我登录系统时,都会加载 .profile 和 .others 属性文件。

如何在这些文件之间链接?

谢谢。

4

1 回答 1

0

将此添加到您的 .profile

if [ -f "$HOME/.others" ]; then
    . "$HOME/.others"
fi

并像这样向 .others 添加一些内容

export foo=bar

或者你想要的任何东西。其他;)

编辑:虽然有一种更简单的方法可以做到这一点,但将 .others 的内容放入 .bashrc (最后)

于 2012-04-25T08:00:22.657 回答