aboutsummaryrefslogtreecommitdiffstats
path: root/awklib/eg/misc/findpat.sh
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:41:09 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:41:09 +0300
commit8c042f99cc7465c86351d21331a129111b75345d (patch)
tree9656e653be0e42e5469cec77635c20356de152c2 /awklib/eg/misc/findpat.sh
parent8ceb5f934787eb7be5fb452fb39179df66119954 (diff)
downloadegawk-8c042f99cc7465c86351d21331a129111b75345d.tar.gz
egawk-8c042f99cc7465c86351d21331a129111b75345d.tar.bz2
egawk-8c042f99cc7465c86351d21331a129111b75345d.zip
Move to gawk-3.0.0.
Diffstat (limited to 'awklib/eg/misc/findpat.sh')
-rw-r--r--awklib/eg/misc/findpat.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/awklib/eg/misc/findpat.sh b/awklib/eg/misc/findpat.sh
new file mode 100644
index 00000000..39710324
--- /dev/null
+++ b/awklib/eg/misc/findpat.sh
@@ -0,0 +1,10 @@
+awk '{
+ if ($1 == "FIND")
+ regex = $2
+ else {
+ where = match($0, regex)
+ if (where != 0)
+ print "Match of", regex, "found at", \
+ where, "in", $0
+ }
+}'