shell-things/uninstall.sh
Mika Suomalainen 993f162a2f Forked bash-things to zsh-things. Converted everything to work with zsh.
Some things can be little weird because moving is still going on.
2011-09-29 15:25:05 +03:00

8 lines
340 B
Bash
Executable File

#!/usr/bin/env zsh
echo "Restoring default files..."
cat ~/.zshrc.default.backup > ~/.zshrc
cat ~/.zsh_aliases.default.backup > ~/.zsh_aliases
cat ~/.zsh_exports.default.backup > ~/.zsh_exports
cat ~/.zsh_functions.default.backup > ~/.zsh_functions
echo "Done! Now you should restart zsh or source files again for default files to affect."