rwx/sh/alias/rm.sh

8 lines
126 B
Bash
Raw Normal View History

2024-11-16 15:22:14 +01:00
# remove interactively
2024-11-19 14:42:11 +01:00
rmi() { a__re_move_interactive "${@}"; }
a__re_move_interactive() {
2024-11-16 15:22:14 +01:00
rm \
--interactive \
"${@}"
}