Chad a29ee9fa54
First Edition, Revision 1 (#4)
* Restore dev branch.

* Add variable processing.

* Revisions while creating audio version.
2024-03-07 13:42:28 -07:00

31 lines
469 B
Bash
Executable File

#!/bin/bash
# 2024-03-06 Hyperling
# PanDoc Usage: https://pandoc.org/MANUAL.html#general-writer-options
date
ebook="HyperlingsHealthProtocol.pdf"
if [[ -e $ebook ]]; then
echo -n "Old: "
du -h $ebook
rm -v $ebook
fi
cp ebook.md /tmp/
sed -i "s/{REVISION_DATE}/`date +'%Y-%m-%d'`/g" /tmp/ebook.md
pandoc /tmp/ebook.md \
-s -N --toc --toc-depth=3 \
-o $ebook
status=$?
echo "Completed with status '$status'."
echo -n "New: "
du -h $ebook
date
exit $status