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