sh/shell/alias/cp.sh
2024-11-16 14:40:28 +01:00

6 lines
64 B
Bash

# copy interactively
cpi() {
cp \
--interactive \
"${@}"
}