7 lines
126 B
Bash
7 lines
126 B
Bash
# remove interactively
|
|
rmi() { a__re_move_interactive "${@}"; }
|
|
a__re_move_interactive() {
|
|
rm \
|
|
--interactive \
|
|
"${@}"
|
|
}
|