Support local managment for embedded agent on nginx

This commit is contained in:
davidga
2022-11-13 13:29:35 +02:00
parent 8b01396eca
commit 1b4b7d17e0
406 changed files with 37980 additions and 35 deletions

16
external/yq/scripts/generate-man-page-md.sh vendored Executable file
View File

@@ -0,0 +1,16 @@
#! /bin/bash
set -e
# note that this reqires pandoc to be installed.
cat ./pkg/yqlib/doc/operators/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/operators/*.md; do
cat "$f" >> man.md
done
for f in ./pkg/yqlib/doc/usage/*.md; do
cat "$f" >> man.md
done