2012-12-21 13:50:51 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Do not use this script unless you know what you are doing!
|
|
|
|
cat .bash_aliases.MKAYSIGREP > ~/.bash_aliases
|
|
|
|
cat .zsh_aliases.MKAYSIGREP > ~/.zsh_aliases
|
|
|
|
cat .gitconfig.MKAYSIGREP > ~/.gitconfig
|
|
|
|
mkdir -p ~/.gnupg
|
|
|
|
cat .gpg.conf.MKAYSIGREP > ~/.gnupg/gpg.conf
|
|
|
|
cat .pastebinit.xml.MKAYSIGREP > ~/.pastebinit.xml
|
|
|
|
cat .environment.MKAYSIGREP > ~/.environment
|
2012-12-21 14:24:51 +01:00
|
|
|
cat .gitconfig.MKAYSIGREP > ~/.gitconfig
|
2012-12-29 14:46:31 +01:00
|
|
|
mkdir -p ~/.ssh
|
2012-12-29 15:07:03 +01:00
|
|
|
cat .keys/ssh > ~/.ssh/authorized_keys
|
|
|
|
chmod 700 ~/.ssh --recursive
|
2012-12-29 15:11:35 +01:00
|
|
|
gpg --quiet --import .keys/0x4DB53CFE82A46728.asc&
|
2012-12-29 15:07:03 +01:00
|
|
|
chmod 700 ~/.gnupg --recursive
|
2012-12-29 15:24:25 +01:00
|
|
|
mkdir -p ~/.public_html/
|
|
|
|
chmod 711 ~
|
|
|
|
chmod 755 ~/.public_html
|
2012-12-21 13:50:51 +01:00
|
|
|
# vim : set ft=sh :
|