[ZSH] Safe wrappers alias

This commit is contained in:
Fabian Ising
2026-07-10 11:37:46 +02:00
parent 34a51c1e91
commit 16b421a688
+4
View File
@@ -71,6 +71,10 @@ export VISUAL='nvim'
alias ls="ls --color=always"
alias cgrep="grep --color=always"
# Use safecp/safemv from the tools-repo when available
(( $+commands[safecp] )) && alias cp=safecp
(( $+commands[safemv] )) && alias mv=safemv
delzip() {
unzip -Z -1 "$@" | xargs -I{} rm -rf {}
}