rwx/sh/io/rm.sh

20 lines
192 B
Bash
Raw Normal View History

2025-07-27 20:34:12 +02:00
# rm
2025-07-27 21:30:27 +02:00
# remove recursively
#| rm
rwx_remove() {
rm \
--force \
--recursive \
"${@}"
}
# remove interactively
2025-07-27 20:34:12 +02:00
#| rm
2025-07-06 19:14:11 +02:00
#= rmi
2025-07-27 20:34:12 +02:00
rwx_remove_interactive() {
rm \
--interactive \
"${@}"
}