diff options
author | Joseph Werle <joseph.werle@gmail.com> | 2014-05-05 11:30:00 -0400 |
---|---|---|
committer | Joseph Werle <joseph.werle@gmail.com> | 2014-05-05 11:31:45 -0400 |
commit | cbfbbbb6b0b7a5441aa0414a73f4a2cda00bd957 (patch) | |
tree | d76b573b8005aad83df719b9f3afbf683036ef6a /man | |
parent | 2d25dad1f814ddbdb1c02a4d648970cb36d8f71e (diff) |
Add exec and man
Diffstat (limited to 'man')
-rw-r--r-- | man/murmur.1 | 58 | ||||
-rw-r--r-- | man/murmur.1.md | 45 |
2 files changed, 103 insertions, 0 deletions
diff --git a/man/murmur.1 b/man/murmur.1 new file mode 100644 index 0000000..e842e22 --- /dev/null +++ b/man/murmur.1 @@ -0,0 +1,58 @@ +.\" Generated with Ronnjs 0.3.8 +.\" http://github.com/kapouer/ronnjs/ +. +.TH "BEAUFORT" "1" "May 2014" "" "" +. +.SH "NAME" +\fBbeaufort\fR \-\- Command line Beaufort Cipher utility +. +.SH "SYNOPSIS" +\fBmurmur\fR [\-hV] [options] +. +.SH "OPTIONS" + \-V, \-\-version + output program version +. +.P + \-h, \-\-help + output help information +. +.P + \-\-seed=[seed] + hash seed (optional) +. +.SH "EXAMPLES" + \fB + $ echo \-n kinkajou | murmur + 3067714808 + \fR +. +.P + \fB + $ echo \-n panda | murmur \-\-seed=10 + 1406483717 + \fR +. +.SH "AUTHOR" +. +.IP "\(bu" 4 +Joseph Werle \fIjoseph\.werle@gmail\.com\fR +. +.IP "" 0 +. +.SH "REPORTING BUGS" +. +.IP "\(bu" 4 +\fIhttps://github\.com/jwerle/murmurhash\.c/issues\fR +. +.IP "" 0 +. +.SH "SEE ALSO" +. +.IP "\(bu" 4 +\fIhttps://github\.com/jwerle/murmurhash\.c\fR +. +.IP "" 0 +. +.SH "LICENSE" +MIT
\ No newline at end of file diff --git a/man/murmur.1.md b/man/murmur.1.md new file mode 100644 index 0000000..4a7ed7f --- /dev/null +++ b/man/murmur.1.md @@ -0,0 +1,45 @@ +beaufort(1) -- Command line Beaufort Cipher utility +================================= + +## SYNOPSIS + +`murmur` \[-hV\] \[options\] + +## OPTIONS + + -V, --version + output program version + + -h, --help + output help information + + --seed=[seed] + hash seed (optional) + +## EXAMPLES + + `` + $ echo -n kinkajou | murmur + 3067714808 + `` + + `` + $ echo -n panda | murmur --seed=10 + 1406483717 + `` + +## AUTHOR + + - Joseph Werle <joseph.werle@gmail.com> + +## REPORTING BUGS + + - <https://github.com/jwerle/murmurhash.c/issues> + +## SEE ALSO + + - <https://github.com/jwerle/murmurhash.c> + +## LICENSE + +MIT |