shell-things/.cat.sh

24 lines
536 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-07-14 19:47:02 +02:00
cat warnings > ~/.warnings
cat pastebinit.xml > ~/.pastebinit.xml
2012-05-01 14:09:21 +02:00
cat oidentd.conf > ~/.oidentd.conf
chmod 644 ~/.oidentd.conf
chmod 711 ~
echo "Beginning ./recommends"
2012-08-11 18:51:21 +02:00
./recommends
echo "Ending ./recommends"
2012-08-11 18:51:21 +02:00
exec $SHELL
# vim : set ft=sh :