7 lines
120 B
1
# copy interactively
2
cpi() { a__co_py_interactive "${@}"; }
3
a__co_py_interactive() {
4
cp \
5
--interactive \
6
"${@}"
7
}
8