From 6a0da48e1bf4d781f619875b2626e47824bc7f19 Mon Sep 17 00:00:00 2001 From: dave Date: Tue, 2 May 2017 20:19:43 -0700 Subject: [PATCH] add README --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..73213f7 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +findbig +======= + +A command-line utility for finding the biggest files in a directory tree. + +``` +usage: findbig [-h] [-v] [-f FORMAT] [-l LIMIT] [-u {k,b,g,m,t}] [-r ROUND] + [-m MIN_SIZE] + 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 {k,b,g,m,t}, --unit {k,b,g,m,t} + 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 +```