Skip to content

Instantly share code, notes, and snippets.

@bak
Created December 29, 2012 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bak/4409718 to your computer and use it in GitHub Desktop.
Save bak/4409718 to your computer and use it in GitHub Desktop.
#!/bin/bash
cutstring="DO NOT EDIT BELOW THIS LINE"
for name in *; do
target="$HOME/.$name"
if [ -e $target ]; then
if [ ! -L $target ]; then
cutline=`grep -n -m1 "$cutstring" "$target" | sed "s/:.*//"`
if [[ -n $cutline ]]; then
let "cutline = $cutline - 1"
echo "Updating $target"
head -n $cutline "$target" > update_tmp
startline=`tail -r "$name" | grep -n -m1 "$cutstring" | sed "s/:.*//"`
if [[ -n $startline ]]; then
tail -n $startline "$name" >> update_tmp
else
cat "$name" >> update_tmp
fi
mv update_tmp "$target"
else
echo "WARNING: $target exists but is not a symlink."
fi
fi
else
if [[ $name != 'install.sh' ]]; then
echo "Creating $target"
if [[ -n `grep "$cutstring" "$name"` ]]; then
cp "$PWD/$name" "$target"
else
ln -s "$PWD/$name" "$target"
fi
fi
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment