there is just one purpose of this simple program, to find big files under a given target path
and tries to do it as simply as it can
- syntax
bff -path <PATH TO SCAN> -minsize <FILE ABOVE SIZE IN MB>
- check for all file size under
~/Downloads
with size greater than 750MB
bff -path ~/Downloads -minsize 750
- check for all file size under
~/Downloads
with size greater than 1GB
bff -path ~/Downloads -minsize 1024
- list directories also which have total size above limit, even if individual file escape the check
bff -dir -path ~/Downloads -minsize 1500
- if listing is erroneous, get to see more info using
-debug
switch as
bff -dir -path ~/Downloads -minsize 1500 -debug