Created
December 29, 2012 22:28
-
-
Save bak/4409718 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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