mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
11 lines
245 B
Bash
Executable File
11 lines
245 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
# note that this requires pandoc to be installed.
|
|
|
|
pandoc \
|
|
--variable=title:"YQ" \
|
|
--variable=section:"1" \
|
|
--variable=author:"Mike Farah" \
|
|
--variable=header:"${MAN_HEADER}" \
|
|
--standalone --to man man.md -o yq.1 |