rwx/sh/alias/mv.sh

8 lines
120 B
Bash
Raw Normal View History

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