Files
server/usr/share/doc/gawk/examples/misc/findpat.awk
2026-01-07 20:52:11 +01:00

10 lines
187 B
Awk

{
if ($1 == "FIND")
regex = $2
else {
where = match($0, regex)
if (where != 0)
print "Match of", regex, "found at", where, "in", $0
}
}