Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Jan 2019 23:21:18 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r343633 - head/usr.bin/shar
Message-ID:  <201901312321.x0VNLI2N009823@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Thu Jan 31 23:21:18 2019
New Revision: 343633
URL: https://svnweb.freebsd.org/changeset/base/343633

Log:
  Shar files may be seen as binary by grep.
  
  Suggest using -a to egrep to properly see executed commands.
  
  This is a minor improvement to the manpage.  A better improvement
  would be removal or gigantic warnings.
  
  Sponsored by:	Dell EMC
  MFC after:	1 week

Modified:
  head/usr.bin/shar/shar.1

Modified: head/usr.bin/shar/shar.1
==============================================================================
--- head/usr.bin/shar/shar.1	Thu Jan 31 23:01:12 2019	(r343632)
+++ head/usr.bin/shar/shar.1	Thu Jan 31 23:21:18 2019	(r343633)
@@ -28,7 +28,7 @@
 .\"     @(#)shar.1	8.1 (Berkeley) 6/6/93
 .\" $FreeBSD$
 .\"
-.Dd June 6, 1993
+.Dd January 31, 2019
 .Dt SHAR 1
 .Os
 .Sh NAME
@@ -103,5 +103,5 @@ Archives produced using this implementation of
 .Nm
 may be easily examined with the command:
 .Bd -literal -offset indent
-egrep -v '^[X#]' shar.file
+egrep -av '^[X#]' shar.file
 .Ed



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901312321.x0VNLI2N009823>