Crates.io | searcher_txt |
lib.rs | searcher_txt |
version | 1.2.3 |
source | src |
created_at | 2024-05-17 16:01:56.36176 |
updated_at | 2024-06-19 13:13:40.050763 |
description | A copy of grep that i mate to train my rust skills |
homepage | https://github.com/Raphdf201/minigrep/releases |
repository | https://github.com/Raphdf201/minigrep |
max_upload_size | |
id | 1243439 |
size | 644,634 |
i made this to train my rust skills
This is a cli program, wich means you need to execute it using .\searcher_txt.exe on windows and ./searcher_txt on linux
The arguments needed are the query, filename and case sensitivity
Example for searching "potato" in file.txt with no case sensitivity on windows :
.\searcher_txt potato file.txt false
If you want your search to be case sensitive :
.\searcher_txt potato file.txt true
If you're on linux or MacOS, replace the \ by /
1.2.3 : Small optimizations
1.2.2 : Case sensitivity is now an argument
1.2.1 : Better error messages
1.2.0 : Added back case sensitivity option
1.1.0 : Fixed some errors
1.0.0 : Basic code (with errors)