README.md
changeset 31 9962a52201ba
parent 30 6d8bbf024448
equal deleted inserted replaced
30:6d8bbf024448 31:9962a52201ba
     1 # goduf
     1 # goduf
     2 
     2 
     3 Goduf is a fast duplicate file finder.
     3 Goduf is a fast duplicate file finder.
       
     4 It is a command line tool.
     4 
     5 
     5 [![license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://raw.githubusercontent.com/McKael/goduf/master/LICENSE)
     6 [![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://raw.githubusercontent.com/McKael/goduf/master/LICENSE)
     6 [![Build Status](https://travis-ci.org/McKael/goduf.svg?branch=master)](https://travis-ci.org/McKael/goduf)
     7 [![Build Status](https://travis-ci.org/McKael/goduf.svg?branch=master)](https://travis-ci.org/McKael/goduf)
     7 
     8 
     8 ## Usage
     9 ## Usage
     9 
    10 
    10 The typical usage is very simple:
    11 The typical usage is very simple:
    52 2018/04/07 21:48:23 Redundant data size: 107594575 bytes (102 MiB)
    53 2018/04/07 21:48:23 Redundant data size: 107594575 bytes (102 MiB)
    53 ```
    54 ```
    54 
    55 
    55 Use `goduf -h` to get the list of available options.
    56 Use `goduf -h` to get the list of available options.
    56 
    57 
    57 *Note for Windows users*: goduf does not normalize paths on Windows, so be careful not to specify the same path twice.
    58 *Note for Windows users:* goduf does not normalize paths on Windows, so be careful not to specify the same path twice.
    58 
    59 
    59 On Linux, hard links are automatically excluded.
    60 On Linux, hard links are automatically excluded.
    60 
    61 
    61 ## Installation:
    62 ## Installation:
    62 
    63 
    63 From the Github mirror:
    64 From the Github mirror:
    64 
    65 
    65 ```
    66 ```
    66 % go get hg.lilotux.net/golang/mikael/goduf
    67 % go get github.com/McKael/goduf
    67 ```
    68 ```
    68 
    69 
    69 From my Mercurial repository (upstream):
    70 From my Mercurial repository (upstream):
    70 
    71 
    71 ```
    72 ```
    72 % go get github.com/McKael/goduf
    73 % hg clone https://hg.lilotux.net/golang/mikael/goduf
       
    74 % cd goduf
       
    75 % go build
    73 ```
    76 ```
       
    77 
       
    78 Please note that if you're not using Go v1.11 yet, you should clone the
       
    79 repository in your $GOPATH.