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