7 lines
120 B
1
# move interactively
2
mvi() { a__mo_ve_interactive "${@}"; }
3
a__mo_ve_interactive() {
4
mv \
5
--interactive \
6
"${@}"
7
}
8