rwx/sh/alias/mv.sh
2024-11-18 15:36:57 +01:00

7 lines
126 B
Bash

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