我需要.bash_profile
与 Dropbox 同步。我能想到的最简单的方法是“重定向”外壳以.bash_profile
在自定义文件夹中搜索。
那么这可能吗?或者还有更好的解决方案吗?
答案1
正如 Eddy_Em 建议的那样,只需链接到它:
mv ~/.bash_profile ~/Dropbox/.bash_profile
ln -s ~/Dropbox/.bash_profile ~/
我需要.bash_profile
与 Dropbox 同步。我能想到的最简单的方法是“重定向”外壳以.bash_profile
在自定义文件夹中搜索。
那么这可能吗?或者还有更好的解决方案吗?
正如 Eddy_Em 建议的那样,只需链接到它:
mv ~/.bash_profile ~/Dropbox/.bash_profile
ln -s ~/Dropbox/.bash_profile ~/