We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0e4d23 commit 9cd44f0Copy full SHA for 9cd44f0
1 file changed
README.md
@@ -57,4 +57,6 @@ We can see there are actually 6 distinguished left-hand sides in zbMATH:
57
If you have `parallel` installed, you can speed up the process. For example:
58
```bash
59
find . -type f | parallel 'grep "mrow(mi:E,mo:=,mrow(mi:m.*;[[:digit:]]*;..*;[3456789]$" {}' 2>/dev/null | awk '{print $1}'
60
+
61
+find . -type f | xargs -n 1 -P 32 gawk 'match($0, /^"mrow\(mi:E,mo:=,mrow\(mi:m.*;[[:digit:]]+;[[:digit:]]+;[[:digit:]][[:digit:]]+$/, arr) {print $1}'
62
```
0 commit comments