9 lines
94 B
Bash
9 lines
94 B
Bash
# cp
|
|
|
|
# copy interactively
|
|
#= cpi
|
|
rwx_copy_interactive() {
|
|
cp \
|
|
--interactive \
|
|
"${@}"
|
|
}
|