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