rwx/sh/alias/rm.sh
2024-11-19 14:42:11 +01:00

7 lines
126 B
Bash

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