~/.bash_profile
DROPBOX_PROFILE='~/Dropbox/Bash/.bash_profile'
if [ -f $DROPBOX_PROFILE ]; then
. $DROPBOX_PROFILE
fi
~/.emacs
(load "~/Dropbox/Emacs/.emacs")
Wie wäre es damit, das vermeidet, spezielle Konfigurationsdateien zu haben, die die Dropbox-Versionen beziehen?
$ ln -s ~/Dropbox/Bash/.bash_profile ~/.bash_profile
$ ln -s ~/Dropbox/Emacs/.emacs ~/.emacs
Rufen Sie in Ihrem regulären .bash_profile einfach ~/Dropbox/Bash/.bash_profile auf.
#.bash_profile
. ~/Dropbox/Bash/.bash_profile # the '.' command runs a file.
Eigentlich möchten Sie die freigegebene Datei wahrscheinlich anders nennen oder sie zumindest nicht zu einer versteckten Datei machen.