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