abhishekkr / bff

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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


About

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

License:MIT License


Languages

Language:Go 89.3%Language:Shell 10.7%