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