Commit Graph

11 Commits

Author SHA1 Message Date
Yann Collet
c6ea1d2107 updated man page regarding -q 2019-10-07 08:34:39 -07:00
Yann Collet
ea5c659701 update man page 2019-09-28 17:55:41 -07:00
Yann Collet
e098fffe0a fix #259
fix collisions for xxh128 in 9-16 bytes range
2019-09-27 17:55:33 -07:00
Yann Collet
b94a5e9477 bumped version number 2019-07-25 16:24:33 -07:00
Yann Collet
6e7a39615b bumped version number to 0.6.3 2017-09-08 01:00:32 -07:00
Jeremy C. Reed
e58063424a few typo fixes in comments or docs 2016-10-26 09:47:53 -05:00
Yann Collet
76104cf2cb Added : make install 2016-08-23 11:42:53 +02:00
Takayuki MATSUOKA
f84201a652 Revamp xxhsum.1 2016-02-22 22:23:29 +09:00
Takayuki MATSUOKA
34e042f552 Revamp xxhsum.1 2016-02-21 23:26:31 +09:00
Takayuki MATSUOKA
96abe78db9 Add EXIT STATUS, EXAMPLES, version number to xxhsum.1
Makefile
  - Add version number XXHSUM_VERSION
  - Add ronn's options to add version number

xxhsum.1.md

  - Add `EXIT STATUS` and `EXAMPLE` section
2016-02-21 09:46:58 +09:00
Takayuki MATSUOKA
ddbed4c2a9 Add manpage files: xxhsum.1 and xxhsum.1.md
You can generate xxhsum.1 by the following procedure:

```
sudo apt-get install -y ruby-ronn
# make man generates xxhsum.1 from xxhsum.1.md #
make man

# edit xxhsum.1.md here #
# auto preview for development
make preview-man
```

`Makefile` has the following tricky part:

```
xxhsum.1: xxhsum.1.md
        cat $^ | $(MD2ROFF) $(MD2ROFF_FLAGS) | sed -n '/^\.\\\".*/!p' > $@
```

Last `sed` command removes `ronn`'s comment lines (`ronn`'s version, author, URL).
It doesn't mean disrespect for `ronn`.  We need this removal because we must
ignore `ronn`'s version to minimize diff.
2016-02-20 03:08:46 +09:00