Skip to content

Instantly share code, notes, and snippets.

@gabeidx
Created December 21, 2013 19:10
Show Gist options
  • Save gabeidx/8073562 to your computer and use it in GitHub Desktop.
Save gabeidx/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