rwx/sh/alias/mv.sh
2024-11-19 14:42:11 +01:00

7 lines
120 B
Bash

# move interactively
mvi() { a__mo_ve_interactive "${@}"; }
a__mo_ve_interactive() {
mv \
--interactive \
"${@}"
}