From 1199b46e84467a9ed005475e2d4d31572fb4ec88 Mon Sep 17 00:00:00 2001 From: The WDS Importer Date: Tue, 21 Jul 2015 13:48:01 +0200 Subject: [PATCH] Function moveoutoftheway --- .zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.zshrc b/.zshrc index 170aa56..349ab9c 100644 --- a/.zshrc +++ b/.zshrc @@ -57,6 +57,10 @@ harden(){ cp -p "$1" .harden.$$ && mv .harden.$$ "$1" } +moveoutoftheway(){ + mv "$1" "$1".old +} + dup(){ mv $1 $1.orig && cp -p $1.orig $1 }