https://github.com/abhishekkr/bff
Big File Finder, simple program to find (all) files above a size at a target dir
https://github.com/abhishekkr/bff
big-files disk disk-space disk-space-analyzer file-finder golang golang-application
Last synced: 10 days ago
JSON representation
Big File Finder, simple program to find (all) files above a size at a target dir
- Host: GitHub
- URL: https://github.com/abhishekkr/bff
- Owner: abhishekkr
- License: mit
- Created: 2020-08-24T05:45:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-25T01:51:53.000Z (almost 6 years ago)
- Last Synced: 2026-04-06T11:41:56.343Z (2 months ago)
- Topics: big-files, disk, disk-space, disk-space-analyzer, file-finder, golang, golang-application
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 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 -minsize `
#### 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
* [latest version](https://github.com/abhishekkr/bff/releases/latest)
* [v0.0.2 Release Page](https://github.com/abhishekkr/bff/releases/tag/v0.0.2), [v0.0.1 Release Page](https://github.com/abhishekkr/bff/releases/tag/v0.0.1)
> * [linux](https://github.com/abhishekkr/bff/releases/download/v0.0.2/bff-linux-amd64)
>
> * [macos](https://github.com/abhishekkr/bff/releases/download/v0.0.2/bff-darwin-amd64)
>
> * [windows](https://github.com/abhishekkr/bff/releases/download/v0.0.2/bff-windows-amd64)
---