ubuntu-buildroot/output/build/host-gawk-5.2.0/awklib/eg/misc/findpat.awk

10 lines
187 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
{
if ($1 == "FIND")
regex = $2
else {
where = match($0, regex)
if (where != 0)
print "Match of", regex, "found at", where, "in", $0
}
}