aboutsummaryrefslogtreecommitdiff
path: root/bin/mkmv
blob: d7e65ae261772a9f3e2ffce549d65ac63b538fb3 (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
exec mv -- "$@"