summaryrefslogtreecommitdiff
path: root/contrib/ports/sequent_ptx_4.4.6
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2021-11-14 09:43:51 -0700
committerEduardo Chappa <chappa@washington.edu>2021-11-14 09:43:51 -0700
commit9efe0684c7cad16264da0e5c90c509d494562ddb (patch)
treefcaa5b8580e1e960012ebfe02ce0109e203f605e /contrib/ports/sequent_ptx_4.4.6
parent216ad987323d8984de2dd9cccdf200a8f801d740 (diff)
downloadalpine-9efe0684c7cad16264da0e5c90c509d494562ddb.tar.xz
* Replace fgre and grep -F and egrep by grep -E as these have been
deprecated. Patch submitted by Ville Skyttä.
Diffstat (limited to 'contrib/ports/sequent_ptx_4.4.6')
-rw-r--r--contrib/ports/sequent_ptx_4.4.68
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/ports/sequent_ptx_4.4.6 b/contrib/ports/sequent_ptx_4.4.6
index c631fcd3..21ff3e35 100644
--- a/contrib/ports/sequent_ptx_4.4.6
+++ b/contrib/ports/sequent_ptx_4.4.6
@@ -129,16 +129,16 @@ diff -cr pine.dist/pine/mailtrfc.sh pine4.20/pine/mailtrfc.sh
echo $host $org $domain | \
! awk '{printf(" %.17s %.11s %.11s Off Campus Total\n", $1, $2, $3)}'
- egrep -v 'TOTAL|----|^-->' /tmp/syslogx.$$ | sort +0.60rn
- egrep 'TOTAL|----' /tmp/syslogx.$$
+ grep -Ev 'TOTAL|----|^-->' /tmp/syslogx.$$ | sort +0.60rn
+ grep -E 'TOTAL|----' /tmp/syslogx.$$
grep '^-->' /tmp/syslogx.$$ | sed -e 's/-->//' > other-traffic
--- 115,121 ----
echo $host $org $domain | \
! nawk '{printf(" %.17s %.11s %.11s Off Campus Total\n", $1, $2, $3)}'
- egrep -v 'TOTAL|----|^-->' /tmp/syslogx.$$ | sort +0.60rn
- egrep 'TOTAL|----' /tmp/syslogx.$$
+ grep -Ev 'TOTAL|----|^-->' /tmp/syslogx.$$ | sort +0.60rn
+ grep -E 'TOTAL|----' /tmp/syslogx.$$
grep '^-->' /tmp/syslogx.$$ | sed -e 's/-->//' > other-traffic
diff -cr pine.dist/pine/send.c pine4.20/pine/send.c
*** pine.dist/pine/send.c Wed Oct 6 16:18:27 1999