10 lines
104 B
Bash
10 lines
104 B
Bash
# rm
|
|
|
|
# remove interactively
|
|
#| rm
|
|
#= rmi
|
|
rwx_remove_interactive() {
|
|
rm \
|
|
--interactive \
|
|
"${@}"
|
|
}
|