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

7 lines
128 B
Bash

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