1 个不稳定版本
新版本 0.1.1 | 2024年8月8日 |
---|---|
0.1.0 |
|
829 在 文本处理 中排名 829
每月下载量 201
6KB
100 行
欢迎使用 peppergrep!
这个简单的 grep 工具是根据《Rust 书》(原名《Rust 编程语言》)的第12章制作的。做了一些小改动。
安装
您可以通过 cargo install
安装这个简单的实用工具
cargo install peppergrep
如果安装成功完成,您就可以使用 peppergrep 了!
使用方法
要使用此工具,只需运行
peppergrep <query> <source_file> [--ignore-case / --attend-case]
其中 query
是您要查找的字符串,source_file
是您要搜索查询的文件路径。 --ignore-case
和 --attend-case
是可选参数,您可以指定它们来强制执行大小写不敏感或敏感。默认情况下,所有搜索都是大小写敏感的。您可以通过创建名为 IGNORE_CASE
的环境变量来覆盖此默认行为。
在 Linux 上,将是
IGNORE_CASE = 1
在 Windows(PowerShell)上
$env:IGNORE_CASE = 1;
卸载
要卸载此工具,只需运行
cargo uninstall peppergrep