From b98dbf1e3de85311c2b99c9a278297d493c2c762 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Thu, 20 Apr 2017 23:27:48 +0200 Subject: [PATCH] make rm alias OS X friendly --- .bash_aliases | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bash_aliases b/.bash_aliases index bd6b517..805db05 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -1,7 +1,7 @@ alias grep='grep --color' alias l='ls -lhatr' -alias ls='ls --color=auto' -alias rm='rm -I' +#alias ls='ls --color=auto' +alias rm='rm -i' # Git stuff alias gdp='git diff --color HEAD^ HEAD'