7 lines
120 B
Bash
7 lines
120 B
Bash
# move interactively
|
|
mvi() { a__mo_ve_interactive "${@}"; }
|
|
a__mo_ve_interactive() {
|
|
mv \
|
|
--interactive \
|
|
"${@}"
|
|
}
|