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