mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-05 00:59:22 +01:00
Aminda Suomalainen
8e28c013d5
I am uncertain of the usefulness of this and think it may be a security theathre with all this being poor practice anyway, but at least it's out of my head now.
20 lines
612 B
Bash
Executable File
20 lines
612 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Do not use this script unless you know what you are doing!
|
|
set -x
|
|
git verify-commit HEAD
|
|
cat .mikaela/bash_aliases> ~/.bash_aliases
|
|
cat .mikaela/zsh_aliases > ~/.zsh_aliases
|
|
cat .mikaela/gitconfig > ~/.gitconfig
|
|
cat rc/xinitrc > ~/.xinitrc
|
|
mkdir -p ~/.gnupg
|
|
cat .mikaela/gpg.conf> ~/.gnupg/gpg.conf
|
|
cat .mikaela/pastebinit.xml > ~/.pastebinit.xml
|
|
cat .mikaela/environment > ~/.environment
|
|
cat .mikaela/gitconfig > ~/.gitconfig
|
|
mkdir -p ~/.ssh
|
|
cat .mikaela/keys/authorized_keys > ~/.ssh/authorized_keys
|
|
cat etc/ssh/ssh_config > ~/.ssh/config
|
|
touch ~/.MIKAELA_GREP
|
|
set +x
|
|
# vim : set ft=sh :
|