1个不稳定版本
0.2.1 | 2023年4月2日 |
---|---|
0.2.0 |
|
0.1.2 |
|
0.1.1 |
|
0.1.0 |
|
#1 在 #ignore-case
每月46次下载
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