URI: 
       tdinit.1 - dedup - data deduplication program
  HTML git clone git://bitreich.org/dedup/ git://hg6vgqziawt5s4dj.onion/dedup/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
       tdinit.1 (980B)
       ---
            1 .Dd April 17, 2019
            2 .Dt DINIT 1
            3 .Os
            4 .Sh NAME
            5 .Nm dinit
            6 .Nd Initialize a dedup repository
            7 .Sh SYNOPSIS
            8 .Nm dinit
            9 .Op Fl v
           10 .Op Fl H Ar hash
           11 .Op Fl Z Ar compressor
           12 .Op repo
           13 .Sh DESCRIPTION
           14 .Nm
           15 initializes a dedup repository.
           16 If no
           17 .Ar repo
           18 is specified, then the current directory
           19 is assumed to be the repository.
           20 .Sh OPTIONS
           21 .Bl -tag -width "-Z compressor"
           22 .It Fl v
           23 Enable verbose mode.
           24 .It Fl H Ar hash
           25 The cryptographic hash function used to identify
           26 unique blocks in the store.
           27 The supported hash functions are blake2b, blake2bp, blake2s and blake2sp.
           28 This flag only has an effect when initializing the repository.
           29 By default blake2b is used.
           30 .It Fl Z Ar compressor
           31 The compressor function used to compress the blocks
           32 in the store.
           33 The supported compressor functions are none, lz4 and snappy.
           34 This flag only has an effect when initializing the repository.
           35 By default lz4 is used.
           36 .El
           37 .Sh AUTHORS
           38 .An Dimitris Papastamos Aq Mt sin@2f30.org ,
           39 .An z3bra Aq Mt contactatz3bradotorg .