Skip to content

dominikbraun/haystack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


haystack


A fast & simple text search across files.

Basic Usage

You have to provide at least a directory path to search in and a search term.

$ haystack <path> <term>

haystack searches case-sensitive by default. However, you can opt-in to case-insentive search.

$ haystack <path> <term> --case-insensitive

You can provide a whitelist of file extensions if you don't want all files to be searched.

$ haystack <path> <term> --ext rs go

To get a list of all available options, use --help.

$ haystack --help

haystack is still under development.