shell-things/.cat.sh

15 lines
352 B
Bash
Raw Normal View History

#!/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
2012-04-30 18:28:04 +02:00
cat gitconfig > ~/.gitconfig
cat vimrc > ~/.vimrc
2012-04-30 18:28:04 +02:00
mkdir -p ~/.gnupg
cat gnupg/gpg.conf > ~/.gpg.conf
cat gpg.conf > ~/.gnupg/gpg.conf
2012-04-03 12:18:29 +02:00
cat xsessionrc > ~/.xsessionrc
exec $SHELL
# vim : set ft=sh :