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