diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-02-22 20:48:16 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-02-22 20:48:16 +0100 |
commit | 170b8a92434233241c990c3e9432786de3262bcd (patch) | |
tree | 5771ee3f1161e2dc74933e3a044073838d45e347 | |
parent | dc5b93cc90931e90c6005bcb6bbc0bae166cab2c (diff) |
Fix typo in README
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ grab 'x/^flags.*/ x/\w+/ G/flags/' /proc/cpuinfo \ 1) Select lines that start with ‘flags’: `x/^flags.*/` 2) Select all the words: `x/\w+/` -3) Filter out the word ‘flags’: `v/flags/` +3) Filter out the word ‘flags’: `G/flags/` ### Find `<my-tag>` tags with the attribute `data-attr` in a Git repo |