This project was made as a learning project.
As such, do not expect to find top quality code in this repo.
That being said, I do try my best to make the code as good as I know about.
This project is also unlikely to receive any updates as it is already "finished" with all the features I care about.
``` Usage: rustgrep [OPTION]... QUERY [FILES]... Search for PATTERN in FILES. Example: rustgrep -i 'hello world' file1.txt file2.txt
Options:
-i Ignore case distinctions in PATTERN
-n Print line number with output lines
-v Invert match: select non-matching lines
-F String searching, disables regex
-x Only match whole lines, only works with -F
-w Only match whole words, only works with -F
-m=
seq 10000 | rust_grep '^\\d{1,3}$'
)