From 5440d29980f05eb2c712650f284beafa37a5fea8 Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Thu, 29 Dec 2011 11:23:18 +0200 Subject: [PATCH] Added hidden .cat.sh to automatically cat these files to correct places. This script is hidden, because it shouldn't be used unless the user is fully sure about what he/she is doing, because it can cause data loss by overwriting all bashrc, zshrc and tmux.conf. --- .cat.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .cat.sh diff --git a/.cat.sh b/.cat.sh new file mode 100644 index 00000000..2952a1c5 --- /dev/null +++ b/.cat.sh @@ -0,0 +1,5 @@ +#!/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