diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-01-18 10:51:27 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-01-18 10:51:27 +0100 |
commit | 983723379575d212188ac753405d4472512f3c4b (patch) | |
tree | beddec8138c2ff4086337a6e7d9a3c3202c3bbf2 | |
parent | 7100902e291f3d0b97f62e6663fe66dac3482c32 (diff) |
Fix typos
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -113,10 +113,10 @@ grab 'x/^flags.*/ x/\w+/ v/flags/' /proc/cpuinfo \ 3) Filter out the word ‘flags’: `v/flags/` -### Fomd `<my-tag>` tags with the attribute `data-attr` in a Git repo +### Find `<my-tag>` tags with the attribute `data-attr` in a Git repo ```sh -git grab 'x/<my-tag[^>]*>/ g/data-attr/' '*.html' +git grab 'x/<my-tag.*?>/ g/data-attr/' '*.html' ``` 1) Select all tags matching `<my-tag>` |