summaryrefslogtreecommitdiffstats
path: root/contrib/awk/awklib/eg/prog/egrep.awk
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2001-11-02 21:06:08 +0000
committerobrien <obrien@FreeBSD.org>2001-11-02 21:06:08 +0000
commitcfe0e2b488d886d14fc1755679b8a88165b22d92 (patch)
treefbf9ca4d3f276e13b39090465008b182d20f0e5a /contrib/awk/awklib/eg/prog/egrep.awk
parent9682ea287751aa7aad9e21c50ba74cfb3d7314d0 (diff)
parent223f0286ad0612783e0da01de3b5bfdc52e3b25c (diff)
downloadFreeBSD-src-cfe0e2b488d886d14fc1755679b8a88165b22d92.zip
FreeBSD-src-cfe0e2b488d886d14fc1755679b8a88165b22d92.tar.gz
This commit was generated by cvs2svn to compensate for changes in r85898,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/awk/awklib/eg/prog/egrep.awk')
-rw-r--r--contrib/awk/awklib/eg/prog/egrep.awk26
1 files changed, 16 insertions, 10 deletions
diff --git a/contrib/awk/awklib/eg/prog/egrep.awk b/contrib/awk/awklib/eg/prog/egrep.awk
index 06762a1..73f175c 100644
--- a/contrib/awk/awklib/eg/prog/egrep.awk
+++ b/contrib/awk/awklib/eg/prog/egrep.awk
@@ -1,4 +1,5 @@
# egrep.awk --- simulate egrep in awk
+#
# Arnold Robbins, arnold@gnu.org, Public Domain
# May 1993
@@ -9,6 +10,8 @@
# -i ignore case
# -l print filenames only
# -e argument is pattern
+#
+# Requires getopt and file transition library functions
BEGIN {
while ((c = getopt(ARGC, ARGV, "ce:svil")) != -1) {
@@ -69,18 +72,20 @@ function endfile(file)
if (! matches)
next
- if (no_print && ! count_only)
- nextfile
+ if (! count_only) {
+ if (no_print)
+ nextfile
- if (filenames_only && ! count_only) {
- print FILENAME
- nextfile
- }
+ if (filenames_only) {
+ print FILENAME
+ nextfile
+ }
- if (do_filenames && ! count_only)
- print FILENAME ":" $0
- else if (! count_only)
- print
+ if (do_filenames)
+ print FILENAME ":" $0
+ else
+ print
+ }
}
END \
{
@@ -91,6 +96,7 @@ END \
function usage( e)
{
e = "Usage: egrep [-csvil] [-e pat] [files ...]"
+ e = e "\n\tegrep [-csvil] pat [files ...]"
print e > "/dev/stderr"
exit 1
}
OpenPOWER on IntegriCloud