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