rwx/sh/alias/rm.sh

8 lines
126 B
Bash
Raw Normal View History

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