26 lines
350 B
Bash
Raw Normal View History

2024-03-06 14:17:03 -07:00
#!/bin/bash
# 2023-03-06 Hyperling
# PanDoc Usage: https://pandoc.org/MANUAL.html#general-writer-options
date
ebook="HyperlingsHealthProtocol.pdf"
if [[ -e $ebook ]]; then
du -h $ebook
rm -v $ebook
fi
2024-03-06 14:17:03 -07:00
pandoc ebook.md \
-s -N --toc --toc-depth=3 \
-o $ebook
2024-03-06 14:17:03 -07:00
status=$?
echo "Completed with status '$status'."
du -h $ebook
2024-03-06 14:17:03 -07:00
date
exit $status