rwx/sh/alias/cp.sh
2024-11-19 09:17:14 +01:00

7 lines
122 B
Bash

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