8 lines
120 B
Bash
8 lines
120 B
Bash
|
# copy interactively
|
||
|
cpi() { a__co_py_interactive "${@}"; }
|
||
|
a__co_py_interactive() {
|
||
|
cp \
|
||
|
--interactive \
|
||
|
"${@}"
|
||
|
}
|