#mini-grep #string-search #clone #tutorial #file #ignore-case #txt

bin+lib grep-clone

来自Rust-lang官方教程的迷你grep克隆

1个不稳定版本

0.2.1 2023年4月2日
0.2.0 2023年4月2日
0.1.2 2023年4月2日
0.1.1 2023年4月2日
0.1.0 2023年4月2日

#1#ignore-case

每月46次下载

MIT 许可证

6KB
101

grep克隆

https://doc.rust-lang.net.cn/book/ch12-00-an-io-project.html 的实现

这是一个玩具项目,通过支持在文件中搜索字符串来工作。

安装

cargo install grep-clone

用法

grep-clone string file.txt

它还支持忽略大小写

grep-clone string file.txt -i

或者

grep-clone string file.txt --ignore-case

或者

export IGNORE_CASE=true
grep-clone string file.txt

lib.rs:

grep克隆

支持搜索文件子串的grep迷你版。

这里仅为了学习目的实现。

项目最初指定于:https://doc.rust-lang.net.cn/book/ch12-00-an-io-project.html

无运行时依赖