|
|
|
@ -45,26 +45,17 @@ do
|
|
|
|
|
if [ ${builddir} != "null" ]
|
|
|
|
|
then
|
|
|
|
|
if test -f "texts/${ficstring}.html"
|
|
|
|
|
then
|
|
|
|
|
if ! test -f "build/${builddir}/${ficstring}.html"
|
|
|
|
|
then
|
|
|
|
|
mv "texts/${ficstring}.html" "build/${builddir}/"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
if test -f "texts/${ficstring}.pdf"
|
|
|
|
|
then
|
|
|
|
|
if ! test -f "build/${builddir}/${ficstring}.pdf"
|
|
|
|
|
then
|
|
|
|
|
mv "texts/${ficstring}.pdf" "build/${builddir}/"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
if test -f "texts/${ficstring}.epub"
|
|
|
|
|
then
|
|
|
|
|
if ! test -f "build/${builddir}/${ficstring}.epub"
|
|
|
|
|
then
|
|
|
|
|
mv "texts/${ficstring}.epub" "build/${builddir}/"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|