summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs9
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}");
}
}