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