6 lines
64 B
Bash
6 lines
64 B
Bash
# copy interactively
|
|
cpi() {
|
|
cp \
|
|
--interactive \
|
|
"${@}"
|
|
}
|