mirror of
https://github.com/nasa/fpp.git
synced 2025-12-17 05:51:30 -06:00
21 lines
412 B
Plaintext
21 lines
412 B
Plaintext
#!/bin/sh -e
|
|
|
|
# ----------------------------------------------------------------------
|
|
# fpp-users-guide.adoc.do
|
|
# ----------------------------------------------------------------------
|
|
|
|
. ./defs.sh
|
|
|
|
redo-ifchange $FILES
|
|
|
|
echo "= The F Prime Prime (FPP) User's Guide, $VERSION
|
|
:toc: left
|
|
:toclevels: 3
|
|
:stem:
|
|
:source-highlighter: prettify"
|
|
for file in $FILES
|
|
do
|
|
echo
|
|
cat $file
|
|
done | awk -f scripts/tags.awk
|