2022-06-13 09:31:59 +00:00
|
|
|
# README
|
|
|
|
|
2023-01-25 01:16:01 +00:00
|
|
|
Build man pages.
|
2022-06-13 09:31:59 +00:00
|
|
|
|
2023-01-25 01:16:01 +00:00
|
|
|
- Install `pandoc`
|
|
|
|
- Execute the following to build
|
2022-06-13 09:31:59 +00:00
|
|
|
|
|
|
|
```shell
|
2023-01-25 01:16:01 +00:00
|
|
|
cd _man
|
2022-06-13 09:31:59 +00:00
|
|
|
# generate man pages in /usr/share/man/man1
|
2023-01-25 01:16:01 +00:00
|
|
|
for file in src/*.md; do bn=$(basename $file .md); pandoc $file -s -t man -o ../usr/share/man/man1/$bn; done
|
2022-06-13 09:31:59 +00:00
|
|
|
```
|