Replace .index with .snapshots in manpage and README - dedup - deduplicating backup program
 (HTM) git clone git://bitreich.org/dedup/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dedup/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 83276cee93b10e5def83fa4ea7400accb9272566
 (DIR) parent eee75520164b914f4db72937e055e8809c79b479
 (HTM) Author: sin <sin@2f30.org>
       Date:   Fri, 22 Feb 2019 15:26:07 +0000
       
       Replace .index with .snapshots in manpage and README
       
       Diffstat:
         M Makefile                            |       2 +-
         M README                              |      12 ++++++------
         M dedup.1                             |       4 ++--
       
       3 files changed, 9 insertions(+), 9 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       @@ -22,7 +22,7 @@ LDLIBS = -lcrypto -llz4
        
        all: $(BIN)
        
       -$(OBJ): arg.h config.h tree.h dedup.h
       +$(OBJ): arg.h config.h dedup.h tree.h
        
        clean:
                rm -f $(OBJ) $(BIN) $(BIN)-$(VERSION).tar.gz
 (DIR) diff --git a/README b/README
       @@ -5,11 +5,11 @@ For example, to dedup a tar file you can invoke dedup as follows:
        
            tar -c ~/dir | dedup -r ~/bak -m "$(date)"
        
       -This will create .{cache,index,store} files in the ~/bak
       -directory.  The store file contains all the unique blocks.  The index
       -file contains all the revisions of files that have been deduplicated.
       -Each revision is identified by its SHA256 hash.  The cache file is
       -only used to speed up block comparison.
       +This will create .{cache,snapshots,store} files in the ~/bak
       +directory.  The store file contains all the unique blocks.  The
       +snapshots file contains all the revisions of files that have been
       +deduplicated.  Each revision is identified by its SHA256 hash.  The
       +cache file is only used to speed up block comparison.
        
        To list all known revisions run:
        
       @@ -20,7 +20,7 @@ You will get a list of hashes.  Each hash corresponds to a single file
        
        To extract a file from the deduplicated store run:
        
       -    dedup -r ~/bak -e <hash> > bak.tar
       +    dedup -r ~/bak -e <hash> > dir.tar
        
        Cheers,
        sin
 (DIR) diff --git a/dedup.1 b/dedup.1
       @@ -1,4 +1,4 @@
       -.Dd Feb 17, 2019
       +.Dd Feb 22, 2019
        .Dt DEDUP 1
        .Os
        .Sh NAME
       @@ -27,7 +27,7 @@ Enable verbose mode.
        .It Fl e Ar id
        Extract snapshot with the specified id.
        .It Fl r Ar root
       -Set the root directory where the .cache, .index and .store
       +Set the root directory where the .cache, .snapshots and .store
        files will be created.
        .It Fl m Ar message
        Attach a descriptive message to the snapshot.