我如何将 .bash_profile 搬离家

wha*_*ide 9 bash bash-script

我需要.bash_profile与 Dropbox 同步。我能想到的最简单的方法是“重定向”shell 以.bash_profile在自定义文件夹中搜索。

那么这可能吗?或者有什么更好的解决方案?

ter*_*don 13

正如 Eddy_Em 建议的那样,只需链接到它:

mv ~/.bash_profile ~/Dropbox/.bash_profile
ln -s ~/Dropbox/.bash_profile ~/
Run Code Online (Sandbox Code Playgroud)