19 lines
192 B
Bash
19 lines
192 B
Bash
# rm
|
|
|
|
# remove recursively
|
|
#| rm
|
|
rwx_remove() {
|
|
rm \
|
|
--force \
|
|
--recursive \
|
|
"${@}"
|
|
}
|
|
|
|
# remove interactively
|
|
#| rm
|
|
#= rmi
|
|
rwx_remove_interactive() {
|
|
rm \
|
|
--interactive \
|
|
"${@}"
|
|
}
|