rwx/sh/alias/mv.sh

8 lines
126 B
Bash
Raw Normal View History

2023-05-18 11:20:30 +00:00
# move interactively
2024-11-18 14:36:57 +00:00
mvi() { sh_a__mo_ve_interactive "${@}"; }
sh_a__mo_ve_interactive() {
2024-11-16 13:40:28 +00:00
mv \
--interactive \
"${@}"
}