shell-things/.cat.sh
Mika Suomalainen d92952c9f2 .cat.sh: add automatic restarting of shell.
exec $SHELL

Also add vim modeline ;)
2012-01-10 17:43:12 +02:00

11 lines
293 B
Bash
Executable File

#!/usr/bin/env bash
# Do not use this script unless you know what you are doing!
cat bashrc > ~/.bashrc
cat tmux.conf > ~/.tmux.conf
cat zshrc > ~/.zshrc
#cat gitconfig > ~/.gitconfig # I usually do not want this to be overridden so much.
cat vimrc > ~/.vimrc
exec $SHELL
# vim : set ft=sh :