This commit is contained in:
Marc Beninca 2025-07-27 19:32:12 +02:00
parent 35b464c8f8
commit cafc65bf4d
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

9
sh/io/cp.sh Normal file
View file

@ -0,0 +1,9 @@
# cp
# copy interactively
#= cpi
rwx_copy_interactive() {
cp \
--interactive \
"${@}"
}