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