rwx/sh/alias/rm.sh

8 lines
132 B
Bash
Raw Normal View History

2024-11-16 14:22:14 +00:00
# remove interactively
2024-11-18 14:31:30 +00:00
rmi() { sh_a__re_move_interactive "${@}"; }
sh_a__re_move_interactive() {
2024-11-16 14:22:14 +00:00
rm \
--interactive \
"${@}"
}