aboutsummaryrefslogtreecommitdiff
path: root/bin/mkmv
blob: 2dfcd813316e1f7de25066d22bb246c06f9268cd (plain) (blame)
1
2
3
4
5
6
#!/bin/sh
# Move files into created directory in one call
[ "$#" -gt 2 ] || exit 2
for dir ; do : ; done
mkdir -p -- "$dir" || exit
mv -- "$@"