shell-things/cat.run
Mika Suomalainen cd08183225 Add 2 scripts & rename 1, read whole commit message
apt.run: install depedencies with apt-get

cat.run: put all files to their correct places, previously known as
.cat.sh

yum.run: install depedencies with yum
	new file:   apt.run
	renamed:    .cat.sh -> cat.run
	new file:   yum.run
2012-12-21 13:32:20 +02:00

18 lines
446 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
cat vimrc > ~/.vimrc
mkdir -p ~/.gnupg
cat gpg.conf > ~/.gnupg/gpg.conf
cat xsessionrc > ~/.xsessionrc
cat warnings > ~/.warnings
cat pastebinit.xml > ~/.pastebinit.xml
cat oidentd.conf > ~/.oidentd.conf
chmod 644 ~/.oidentd.conf
chmod 711 ~
# vim : set ft=sh :