1#!/bin/ksh 2 3if [ ! -d "$1" ]; then 4 echo "\"$1\" should be source repository root directory" 5 exit 1 6fi 7 8for f in LICENSE */* 9do 10 cp $1/$f $f 11done 12