diff options
author | Joursoir <chat@joursoir.net> | 2023-03-02 23:57:15 +0400 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2023-03-03 00:06:53 +0400 |
commit | c15d3215dea3dadf93c1be1291c4001c3bff8f4e (patch) | |
tree | 3ae322dff3c1d27a742a954566573dacb47a16b6 /src/main.rs | |
parent | 74361b83133822fef6d8a4baf1b0d70e22f9e04e (diff) | |
download | trgrep-c15d3215dea3dadf93c1be1291c4001c3bff8f4e.tar.gz trgrep-c15d3215dea3dadf93c1be1291c4001c3bff8f4e.tar.bz2 trgrep-c15d3215dea3dadf93c1be1291c4001c3bff8f4e.zip |
add option to ignore search string case
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index af3b56a..3111766 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,6 +14,10 @@ struct Config { /// /// If no FILE is given, read standard input. files: Vec<String>, + + /// Ignores the case of the search string + #[arg(short, long)] + ignore_case: bool, } fn main() { @@ -43,7 +47,10 @@ fn run(config: Config) -> Result<(), Box<dyn Error>> { &mut file_read }; - for line in reader.lines().map(|l| l.unwrap().contains(&config.pattern)) { + for line in reader.lines().map(|l| l.unwrap()) { + if !trgrep::contains_pattern(&line, &config.pattern, config.ignore_case) { + continue; + } println!("{line}"); } } |