blob: 4a7ed7fad8a7afd2430ab6d29eb51e969a37e81e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
|