Skip to content
/ bff Public

Big File Finder, simple program to find (all) files above a size at a target dir

License

Notifications You must be signed in to change notification settings

abhishekkr/bff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Big File Finder (BFF)

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


Usage

  • syntax bff -path <PATH TO SCAN> -minsize <FILE ABOVE SIZE IN MB>

Example

  • 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

Install/Download