From 51b52c2e74ccda1abab3c2a156b32ebe8fb48872 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Wed, 31 Jan 2024 09:57:08 +0100 Subject: [PATCH] don't use rm. use trash-cli instead --- zsh/.zshrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 262fa6c..912da05 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -116,7 +116,9 @@ alias fgrep='fgrep --color=auto' # confirm before overwriting something alias cp="cp -i" alias mv='mv -i' -alias rm='rm -i' + +# don't use rm +alias rm='echo "This is not the command you are looking for."; false' # git alias add='git add'