21 lines
293 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
if [[ -e ebook.pdf ]]; then
rm -v ebook.pdf
fi
2024-03-06 14:17:03 -07:00
pandoc ebook.md \
-s -N --toc --toc-depth=3 \
2024-03-06 14:17:03 -07:00
-o ebook.pdf
status=$?
echo "Completed with status '$status'."
date
exit $status