更改.bashrc的位置


8

是否可以将.bashrcfrom 的位置更改为/home/orhanc/.bashrc其他目录?


您可以更改/etc/.bashrc,以便它将/ bashrc包含在特殊位置(根据用户login / home目录的不同而有所不同)。
Anthon

Answers:


15

是。您有三个主要选择:

符号链接〜/ .bashrc,

mv ~/.bashrc ~/blah && ln -s ~/blah/.bashrc ~/.bashrc

从〜/ .bashrc获取新文件,

mv ~/.bashrc ~/blah && cat > ~/.bashrc << 'EOF'
. ~/blah/.bashrc
EOF

或使用发射bash --rcfile

mv ~/.bashrc ~/blah
bash --rcfile ~/blah/.bashrc

哦,当然!如果您不知道,我仍在学习使用Linux的来龙去脉,并且忘记了符号链接。谢谢!
OrhanC13年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.