findit

Fild files

View project on GitHub

Quick Start Guide

Get started with findit in 5 minutes.

Installation

cargo install findit-cli

Basic Usage

List all files:

findit

List files in a directory:

findit /path/to/dir

Filtering

Find all Rust files:

findit --where 'extension = "rs"'

Find large files:

findit --where 'size > 1000000'

Find recent files:

findit --where 'modified > now() - 86400'

Combining Conditions

Use AND/OR to combine conditions:

findit --where 'extension = "txt" AND size > 1024'

Ordering Results

Show largest files first:

findit --where 'IS FILE' --order-by 'size DESC' --limit 10

Custom Output

Show file names and sizes:

findit --display 'File: `name`, Size: `size` bytes'

Next Steps