From 1b7d5537f841f6d67ec8f43b106c1180b964f6ed Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 11 Aug 2025 11:34:40 +0200 Subject: [PATCH] add an alias for `rm` to set `-I`, which is less intruisive than `-i` --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 27eca05..815f35a 100644 --- a/.bashrc +++ b/.bashrc @@ -88,7 +88,7 @@ alias make='_make -j' # aliases to avoid mistakes alias cp='cp -i' alias mv='mv -i' -#alias rm='rm -i' +alias rm='rm -I' alias :qa='exit' alias qa='exit'