mirror of
https://github.com/openappsec/openappsec.git
synced 2025-11-18 10:10:36 +03:00
Support local managment for embedded agent on nginx
This commit is contained in:
16
external/yq/scripts/generate-man-page-md.sh
vendored
Executable file
16
external/yq/scripts/generate-man-page-md.sh
vendored
Executable 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
|
||||
Reference in New Issue
Block a user