0084087d35
MANPAGE-render.bash renders the markdown to a proper man(1) manpage
8 lines
135 B
Bash
Executable File
8 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
# Render MANPAGE.md to a proper man(1) manpage
|
|
|
|
pandoc MANPAGE.md -s -t man -o gocryptfs.1 && man ./gocryptfs.1
|