This commit is contained in:
Marc Beninca 2025-07-27 20:34:35 +02:00
parent 2c38dd2644
commit c3d611c6bd
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

10
sh/io/rm.sh Normal file
View file

@ -0,0 +1,10 @@
# rm
# remove interactively
#| rm
#= rmi
rwx_remove_interactive() {
rm \
--interactive \
"${@}"
}