rwx/sh/alias/rm.sh
2024-11-18 15:31:30 +01:00

7 lines
132 B
Bash

# remove interactively
rmi() { sh_a__re_move_interactive "${@}"; }
sh_a__re_move_interactive() {
rm \
--interactive \
"${@}"
}