rwx/sh/alias/cp.sh
2024-11-18 15:35:18 +01:00

7 lines
126 B
Bash

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