rwx/sh/alias/cp.sh

8 lines
126 B
Bash
Raw Normal View History

2023-05-18 13:23:12 +02:00
# copy interactively
2024-11-18 15:35:18 +01:00
cpi() { sh_a__co_py_interactive "${@}"; }
sh_a__co_py_interactive() {
2024-11-16 14:40:28 +01:00
cp \
--interactive \
"${@}"
}