diff options
author | Jakob Unterwurzacher | 2015-12-01 18:19:24 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-12-01 18:19:24 +0100 |
commit | accf8144ca627ffc0a282259d28b8fe6e583eed6 (patch) | |
tree | 41b4279a84faa2e5b621e7277376bc63be4f0007 /Documentation/MANPAGE-render.bash | |
parent | cbb18380bee538f3b1f26e3588857bcdf8a1b964 (diff) |
Move docs to Documentation folder
Diffstat (limited to 'Documentation/MANPAGE-render.bash')
-rwxr-xr-x | Documentation/MANPAGE-render.bash | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/MANPAGE-render.bash b/Documentation/MANPAGE-render.bash new file mode 100755 index 0000000..9ea268d --- /dev/null +++ b/Documentation/MANPAGE-render.bash @@ -0,0 +1,7 @@ +#!/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 |