mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-14 07:08:06 +00:00
13 lines
253 B
Bash
Executable File
13 lines
253 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
# note that this reqires pandoc to be installed.
|
|
|
|
cat ./pkg/yqlib/doc/headers/Main.md > man.md
|
|
printf "\n# HOW IT WORKS\n" >> man.md
|
|
tail -n +2 how-it-works.md >> man.md
|
|
|
|
for f in ./pkg/yqlib/doc/*.md; do
|
|
cat "$f" >> man.md
|
|
done
|