aboutsummaryrefslogtreecommitdiff
path: root/home/bin/updatedots
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-06-08 17:05:30 +0200
committerJakob Odersky <jodersky@gmail.com>2015-06-08 17:05:30 +0200
commit381eb6df61ce6d6e2c7bd926a5bd73f7b4c2333f (patch)
treeb1cf57dea578ac40c373cbdec969fce153a4d427 /home/bin/updatedots
downloaddotfiles-381eb6df61ce6d6e2c7bd926a5bd73f7b4c2333f.tar.gz
dotfiles-381eb6df61ce6d6e2c7bd926a5bd73f7b4c2333f.tar.bz2
dotfiles-381eb6df61ce6d6e2c7bd926a5bd73f7b4c2333f.zip
initial commit
Diffstat (limited to 'home/bin/updatedots')
-rwxr-xr-xhome/bin/updatedots63
1 files changed, 63 insertions, 0 deletions
diff --git a/home/bin/updatedots b/home/bin/updatedots
new file mode 100755
index 0000000..4426ba7
--- /dev/null
+++ b/home/bin/updatedots
@@ -0,0 +1,63 @@
+#!/bin/bash
+
+# Root directory of dotfiles project
+BASEDIR=$(dirname "$(readlink -f "$0")")/../..
+
+# Directory containing all dotfiles that will be linked to $HOMEDIR
+DOTDIR=${BASEDIR}/home
+
+# Directory into which files will be linked
+HOMEDIR=${HOME}
+
+# Directory into which any pre-existing dotfiles will be copied
+BACKUPDIR=${HOMEDIR}/.updatedots-backup
+
+# Dotfiles relative to $DOTDIR
+RDOTFILES=$(find ${DOTDIR} -type f -print | sed "s|^${DOTDIR}/||g")
+
+# Command used to create symbolic links
+LINK="ln --symbolic --relative"
+
+# Publish dotfiles to home directory, backing up any collisions
+create_links() {
+ if [ ! -e "$BACKUPDIR" ]; then
+ mkdir "$BACKUPDIR"
+ fi
+ if [ -n "$(ls -A $BACKUPDIR)" ]; then
+ echo "Backup directory $BACKUPDIR is not empty. Local files could be lost. Aborting." >&2
+ exit 1
+ fi
+
+ local moved=0
+
+ echo "*** Linking dotfiles from $(realpath $DOTDIR) to $HOMEDIR ***"
+ for relative in $RDOTFILES; do
+ local src=$DOTDIR/$relative
+ local dest=$HOMEDIR/$relative
+
+ echo -n "$dest: "
+
+ mkdir -p $(dirname "$dest")
+
+ if [ -e "$dest" ] && [ $(readlink -f "$dest") = $(readlink -f "$src") ]; then
+ echo "nothing to be done"
+ else
+ if [ -e "$dest" ]; then
+ mv "$dest" "$BACKUPDIR/$file"
+ moved=1
+ echo -n "saved original, "
+ fi
+
+ $LINK "$src" "$dest"
+ echo "linked"
+ fi
+ done
+
+ echo "*** Finished linking dotfiles ***"
+ echo
+ if [ "$moved" -gt 0 ]; then
+ echo "WARNING: some local files were moved to $BACKUPDIR" >&2
+ fi
+}
+
+create_links