Issueing pacifier messages during tree generation of releng_printsize

This commit is contained in:
Thomas Schmitt 2011-07-17 13:40:10 +00:00
parent 92ef566e12
commit ed181cd4e4
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,7 @@ UPPER=40
# All must be set at this point
# TODO: work out a smarter way to quickly generate different
# types of trees (long, deep, etc)
printf "\n${SELF}: Generating sample tree in ${GEN_DATA_DIR}..."
printf "\n${SELF}: Generating sample tree in ${GEN_DATA_DIR} :\n"
for ((i1=0; i1 < ${UPPER}/4; i1++))
do
for ((i2=0; i2 < ${UPPER}/2; i2++))
@ -47,6 +47,8 @@ do
touch ${GEN_DATA_DIR}/DirOne$i1/DirTwo$i2/DirThree$i3/FileOne
done
done
echo " $(expr '(' ${i1} + 1 ')' '*' ${UPPER} / 2 '*' ${UPPER}) " \
"files created ..."
done
printf "done.\n"