From 7fa86993c3677ce6d41b3c0ba0d99b85f3774088 Mon Sep 17 00:00:00 2001 From: Mitchel Humpherys Date: Mon, 17 Mar 2014 13:59:15 -0700 Subject: [PATCH] prevent preventing headaches to prevent headaches There are some verbose aliases for rm et al that are supposed to "prevent headaches". However, the real headache is when you recursively rm a directory with a million files in it and have to sit through all of that output. Fix this by sticking to the tried-and-true default of non-verbose mode. Users can always ask for verbose output when they want it. --- lib/aliases.zsh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/aliases.zsh b/lib/aliases.zsh index 2094f60a0..3044c9660 100644 --- a/lib/aliases.zsh +++ b/lib/aliases.zsh @@ -6,11 +6,6 @@ alias po='popd' alias ...='cd ../..' alias -- -='cd -' -# Prevent headaches -alias cp='cp -v' -alias rm='rm -v' -alias mv='mv -v' - # Super user alias _='sudo' alias please='sudo'