From 4dc203c8d4c75593af0ed0686f6721e9d0d3585f Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Mon, 26 Oct 2020 22:10:32 -0500 Subject: [PATCH] Added some kooshy defaults to basic commands from: https://youtu.be/Wl7CDe9jsuo --- .bashrc.d/10-alias.bash | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.bashrc.d/10-alias.bash b/.bashrc.d/10-alias.bash index a9d57e0..f5265f9 100644 --- a/.bashrc.d/10-alias.bash +++ b/.bashrc.d/10-alias.bash @@ -1,5 +1,14 @@ ### ALIASES ### +# Nag on overwrite, and show your work +alias mv='mv -iv' + +# Recurse by default, nag on overwrite, and show your work +alias cp='cp -riv' + +# Create parents if necessary, and show your work +alias mkdir='mkdir -vp' + # Colorize all `ls` output: alias ls='ls -AF --color=auto'