Projects STRLCPY deduplicator Commits 6b06798e
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 21 lines
    22 22   -h, --help Print help information
    23 23   -V, --version Print version information
    24 24  ```
     25 +### Examples
     26 + 
     27 +```bash
     28 +# Scan for duplicates recursively from the current dir, only look for png, jpg & pdf file types & interactively delete files
     29 +deduplicator -t pdf,jpg,png -i
     30 + 
     31 +# Scan for duplicates recursively from the ~/Pictures dir, only look for png, jpeg, jpg & pdf file types & interactively delete files
     32 +deduplicator ~/Pictures/ -t png,jpeg,jpg,pdf -i
     33 + 
     34 +# Scan for duplicates in the ~/Pictures without recursing into subdirectories
     35 +deduplicator ~/Pictures --max-depth 0
     36 + 
     37 +# look for duplicates in the ~/.config directory while also recursing into symbolic link paths
     38 +deduplicator ~/.config --follow-links
     39 + 
     40 +# scan for duplicates that are greater than 100mb in the ~/Media directory
     41 +deduplicator ~/Media --min-size 100mb
     42 +```
    25 43   
    26 44  ## Installation
    27 45   
    skipped 79 lines
Please wait...
Page is in error, reload to recover