1 个不稳定版本
0.1.0 | 2024年6月26日 |
---|
#870 in 命令行实用程序
12KB
231 行
简单 Grep (sgrep)
为那些懒得记住许多命令行选项的人设计的简单 grep 工具
用法
# Displays lines containing "pub struct" string in all .rs files in the local directory
sgrep -p "pub struct" *.rs
# Displays lines containing "#ifdef" or "#ifndef" in all *.c* and *.h* files
sgrep -p "#ifdef" -p "#ifndef" -f .c -f .h
依赖项
~1–11MB
~77K SLoC