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