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'