home
/
code
/
khome.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb4df24
)
Fix record start pattern
author
Siraaj Khandkar
<siraaj@khandkar.net>
Sat, 22 Apr 2023 22:43:12 +0000
(18:43 -0400)
committer
Siraaj Khandkar
<siraaj@khandkar.net>
Sat, 22 Apr 2023 22:43:12 +0000
(18:43 -0400)
to avoid whitespace rather than guessing what the not-space could be.
home/bin/p
patch
|
blob
|
blame
|
history
diff --git
a/home/bin/p
b/home/bin/p
index
507d578
..
0f7eb72
100755
(executable)
--- a/
home/bin/p
+++ b/
home/bin/p
@@
-13,7
+13,7
@@
find() {
'
BEGIN {_s = tolower(_s)}
- /^[
a-zA-Z
]/ && tolower($1) ~ _s && NF >= 2 {
+ /^[
^ \t
]/ && tolower($1) ~ _s && NF >= 2 {
n++
s = $1
p = $NF
This page took
0.025953 seconds
and
4
git commands to generate.