Skip to content

Instantly share code, notes, and snippets.

@gabeins
Created December 21, 2013 19:10
Show Gist options
  • Select an option

  • Save gabeins/8073562 to your computer and use it in GitHub Desktop.

Select an option

Save gabeins/8073562 to your computer and use it in GitHub Desktop.
Remove dotfiles archives from ~/
for source in `find $HOME/dotfiles -maxdepth 1 -type f`; do
dest="$HOME/`basename $source`"
if [ -f $dest ] || [ -d $dest ]; then
rm -rfv $dest
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment