From 22bb17842b8789e81b4e3a513fda61c8164c9f7d Mon Sep 17 00:00:00 2001 From: Niklas Date: Wed, 28 Oct 2020 00:14:23 +0100 Subject: [PATCH] added cp mv mkdir alias --- .zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.zshrc b/.zshrc index 7a92b39..42f6a1f 100644 --- a/.zshrc +++ b/.zshrc @@ -108,3 +108,7 @@ alias ssh="TERM=xterm-256color ssh" alias yt-dl-audio="youtube-dl --extract-audio --audio-format mp3" alias rm="trash" alias modx="chmod +x" +alias mv="mv -iv" +alias cp="cp -riv" +alias mkdir="mkdir -pv" +