aboutsummaryrefslogblamecommitdiff
path: root/bin/mkcp
blob: e5b7b71761609de1d46ebe53893f04dffb330239 (plain) (tree)
1
2
3
4
5
6




                                               
             
#!/bin/sh
# Copy files into created directory in one call
[ "$#" -gt 2 ] || exit 2
for dir ; do : ; done
mkdir -p -- "$dir" || exit
cp -R -- "$@"