Crates.io | sgrep |
lib.rs | sgrep |
version | 0.1.0 |
source | src |
created_at | 2024-06-26 04:36:18.901908 |
updated_at | 2024-06-26 04:36:18.901908 |
description | A simple grep util for those lazy to remember many command line options |
homepage | https://gitlab.com/thiagomg/sgrep |
repository | https://gitlab.com/thiagomg/sgrep |
max_upload_size | |
id | 1284156 |
size | 33,605 |
A simple grep util for those lazy to remember many command line options
# 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