6 lines
66 B
Bash
6 lines
66 B
Bash
# remove interactively
|
|
rmi() {
|
|
rm \
|
|
--interactive \
|
|
"${@}"
|
|
}
|