shell-things/.cat.sh

18 lines
399 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
2012-04-30 18:30:47 +02:00
cat gnupg/gpg.conf > ~/.gnupg/gpg.conf
2012-04-03 12:18:29 +02:00
cat xsessionrc > ~/.xsessionrc
2012-05-01 14:09:21 +02:00
cat oidentd.conf > ~/.oidentd.conf
chmod 644 ~/.oidentd.conf
chmod 711 ~
exec $SHELL
# vim : set ft=sh :