diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/man/README.md | 11 | ||||
| -rwxr-xr-x | docs/man/prepare.sh | 5 |
2 files changed, 16 insertions, 0 deletions
diff --git a/docs/man/README.md b/docs/man/README.md new file mode 100644 index 0000000..b0a74fc --- /dev/null +++ b/docs/man/README.md @@ -0,0 +1,11 @@ +# manpages + +These are manpages for a selected group of commands that I consider really useful. I have created a web version of these manpages too at TODO: add link to deployed site. + +## Deployment + +- gzip all the files (`$ gzip *.1`) +- copy to (`/usr/share/man/man1/`) +- `$ man appsluggr` + + diff --git a/docs/man/prepare.sh b/docs/man/prepare.sh index 2180c32..c56f8f1 100755 --- a/docs/man/prepare.sh +++ b/docs/man/prepare.sh @@ -1,3 +1,8 @@ #!/bin/sh +for file in *.1 +do + mandoc -T markdown $file > ../$file.md +done + gzip *.1 |
