CLI utility for finding the largest files in a directory tree
Go to file
dave c16b41e227 Update readme 2017-05-02 21:41:20 -07:00
findbig update version 2017-05-02 21:38:37 -07:00
.gitignore Initial commit 2017-05-02 20:07:50 -07:00
README.md Update readme 2017-05-02 21:41:20 -07:00
setup.py Actually use the correct repo url 2017-05-02 21:40:22 -07:00

README.md

findbig

A command-line utility for finding the biggest files in a directory tree.

usage: findbig [-h] [-v] [-f FORMAT] [-l LIMIT] [-u {m,t,b,g,k}] [-r ROUND]
               [-m MIN_SIZE] [-i]
               base_dir

Find large files in a directory

positional arguments:
  base_dir              Root dir to begin search

optional arguments:
  -h, --help            show this help message and exit

output options:
  -v, --verbose         Enable verbose output
  -f FORMAT, --format FORMAT
                        Output format
  -l LIMIT, --limit LIMIT
                        Limit result count
  -u {m,t,b,g,k}, --unit {m,t,b,g,k}
                        Convert sizes to unit
  -r ROUND, --round ROUND
                        Number of places to round to
  -m MIN_SIZE, --min-size MIN_SIZE
                        Ignore files smaller than threshold
  -i, --live            Print offending files as they are found