diff --git a/zsh/customizations/zsh_aliases.zsh b/zsh/customizations/zsh_aliases.zsh index 6503f63..fd490a1 100644 --- a/zsh/customizations/zsh_aliases.zsh +++ b/zsh/customizations/zsh_aliases.zsh @@ -46,6 +46,12 @@ function rmdirs() fi } +function rmr() +{ + find $@ -not -type d + rm -Ir $@ +} + # Use a larger number of KDF rounds and the secure ed25519 key type by default. alias ssh-keygen="ssh-keygen -a 100 -b 4096 -t ed25519"