First, you probably know the
mkdir -p somepath/{new,cur,tmp}
and
for DIR in new cur tmp
do mv src/${DIR}/* dst/${DIR}
done
Second, it does make a difference for
mv src/* dst
whether
* the src/* resolves to one name, many, or none
* the dst exist or not
* the dst is a directory or file
Do the...