pages*: fix various proper names, acronyms and initialisms (#12494)

This commit is contained in:
Vitor Henrique
2024-03-14 02:01:06 -03:00
committed by GitHub
parent 33770df77d
commit 935d605998
243 changed files with 415 additions and 415 deletions

View File

@@ -1,9 +1,9 @@
# zipgrep
> Find patterns in files in a ZIP archive using extended regular expression (supports `?`, `+`, `{}`, `()` and `|`).
> Find patterns in files in a Zip archive using extended regular expression (supports `?`, `+`, `{}`, `()` and `|`).
> More information: <https://manned.org/zipgrep>.
- Search for a pattern within a ZIP archive:
- Search for a pattern within a Zip archive:
`zipgrep "{{search_pattern}}" {{path/to/file.zip}}`
@@ -15,10 +15,10 @@
`zipgrep -v "{{search_pattern}}" {{path/to/file.zip}}`
- Specify files inside a ZIP archive from search:
- Specify files inside a Zip archive from search:
`zipgrep "{{search_pattern}}" {{path/to/file.zip}} {{file/to/search1}} {{file/to/search2}}`
- Exclude files inside a ZIP archive from search:
- Exclude files inside a Zip archive from search:
`zipgrep "{{search_pattern}}" {{path/to/file.zip}} -x {{file/to/exclude1}} {{file/to/exclude2}}`