.profile文件链接

时间:2012-04-25 07:57:22

标签: linux unix

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

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

感谢。

1 个答案:

答案 0 :(得分:0)

将.profile添加到此

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

并添加一些东西给像这样的。

export foo=bar

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

编辑:尽管有更简单的方法,将.others的内容放入.bashrc(最后)