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

7 lines
122 B
Bash

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