rwx/sh/alias/cp.sh

8 lines
120 B
Bash
Raw Normal View History

2023-05-18 11:23:12 +00:00
# copy interactively
2024-11-19 13:42:11 +00:00
cpi() { a__co_py_interactive "${@}"; }
a__co_py_interactive() {
2024-11-16 13:40:28 +00:00
cp \
--interactive \
"${@}"
}