Show copyDir.sh.in syntax highlighted
# copyDir.sh <srcdir> <dstdir>
# Can be configured not to overwrite existing subdirectories
srcdir=$1
dstdir=$2
srcdir=`cd $srcdir;pwd`
mkdir -p $dstdir
dstdir=`cd $dstdir;pwd`
if test "$srcdir" != "$dstdir"; then
cd $dstdir
if test "$overwrite" = "yes"; then
rm -rf *
cp -r ${srcdir}/* .
else
for file in ${srcdir}/*; do
if test ! -r $file; then
cp -r $srcdir/$file .
fi
done
fi
fi
See more files for this project here