From 8529e65ab136de589176dbe5631565ce1f945e5e Mon Sep 17 00:00:00 2001 From: ardentsword Date: Sun, 8 Nov 2015 17:43:15 +0100 Subject: [PATCH] added automic stow conflict resolver --- remove-stow-conflicts.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 remove-stow-conflicts.sh diff --git a/remove-stow-conflicts.sh b/remove-stow-conflicts.sh new file mode 100755 index 0000000..575a01a --- /dev/null +++ b/remove-stow-conflicts.sh @@ -0,0 +1,26 @@ +#! /bin/sh + +# remove-stow-conflicts -- +# remove all conflicts detected by stow, but that are +# already links to previous stow packages... + +# $Id: remove-stow-conflicts,v 1.1 1997/10/17 21:19:03 cdua Exp cdua $ +# Carlos Duarte, 970903/971017 + +stow -nvc $* 2>&1 \ + | sed -n '/^CONFLICT/s/^.*vs\. //p' \ + | while read i; do + test -L $i || { + echo Skipping $i ... + continue + } + + point_to=`ls -ald $i | awk '{print $NF}'` + + #echo $i points to $point_to + case $point_to in + ..*/stow/* | ..*/?stow/* | stow/* ) + echo "Deleting $i (link to $point_to)"... + rm -f $i + esac +done