rwx/sh/alias/mv.sh

8 lines
120 B
Bash
Raw Permalink Normal View History

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