6 lines
64 B
Bash
6 lines
64 B
Bash
# move interactively
|
|
mvi() {
|
|
mv \
|
|
--interactive \
|
|
"${@}"
|
|
}
|