~/.bash_profile
DROPBOX_PROFILE='~/Dropbox/Bash/.bash_profile'
if [ -f $DROPBOX_PROFILE ]; then
. $DROPBOX_PROFILE
fi
~/.emacs
(load "~/Dropbox/Emacs/.emacs")
A co takhle, abyste se vyhnuli speciálním konfiguračním souborům, které jsou zdrojem verzí Dropboxu?
$ ln -s ~/Dropbox/Bash/.bash_profile ~/.bash_profile
$ ln -s ~/Dropbox/Emacs/.emacs ~/.emacs
Ve svém běžném profilu .bash_profile stačí zavolat ~/Dropbox/Bash/.bash_profile.
#.bash_profile
. ~/Dropbox/Bash/.bash_profile # the '.' command runs a file.
Pravděpodobně budete chtít sdílený soubor nazvat jinak, nebo z něj alespoň nedělat skrytý soubor.