system-helpers/_man
Alexander Schäferdiek 13c7335ee3
All checks were successful
continuous-integration/drone/push Build is passing
Fix check_updates and update man reference to point to correct examples
2023-01-27 00:53:23 +01:00
..
src Fix check_updates and update man reference to point to correct examples 2023-01-27 00:53:23 +01:00
README.md Switch to pandoc for man creation; add manuals for configuration-based helper scripts; add support for gotify in systemd_failure_notify 2023-01-25 02:16:01 +01:00

README

Build man pages.

  • Install pandoc
  • Execute the following to build
cd _man
# generate man pages in /usr/share/man/man1
for file in src/*.md; do bn=$(basename $file .md); pandoc $file -s -t man -o ../usr/share/man/man1/$bn; done