diff options
author | helbig <helbig@FreeBSD.org> | 1997-10-26 10:33:02 +0000 |
---|---|---|
committer | helbig <helbig@FreeBSD.org> | 1997-10-26 10:33:02 +0000 |
commit | 934ccba8075b79b56259670bd08e3916465292ff (patch) | |
tree | b6c3046fbecfce911d27582007ba0806689f8ae2 /bin/mv | |
parent | 4be61c03044e2421c4e3c82650ef951097917997 (diff) | |
download | FreeBSD-src-934ccba8075b79b56259670bd08e3916465292ff.zip FreeBSD-src-934ccba8075b79b56259670bd08e3916465292ff.tar.gz |
Synchronize usage() and man page.
Pointed out by bde.
Diffstat (limited to 'bin/mv')
-rw-r--r-- | bin/mv/mv.1 | 4 | ||||
-rw-r--r-- | bin/mv/mv.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/bin/mv/mv.1 b/bin/mv/mv.1 index af6e096..784e83b 100644 --- a/bin/mv/mv.1 +++ b/bin/mv/mv.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mv.1 8.1 (Berkeley) 5/31/93 -.\" $Id$ +.\" $Id: mv.1,v 1.9 1997/02/22 14:04:11 peter Exp $ .\" .Dd May 31, 1993 .Dt MV 1 @@ -47,7 +47,7 @@ .Ar source target .Nm mv .Op Fl f | Fl i -.Ar source ... source directory +.Ar source ... directory .Sh DESCRIPTION .Pp In its first form, the diff --git a/bin/mv/mv.c b/bin/mv/mv.c index a2dc324..ac53e11 100644 --- a/bin/mv/mv.c +++ b/bin/mv/mv.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mv.c,v 1.14 1997/09/28 10:41:40 wosch Exp $ + * $Id: mv.c,v 1.15 1997/10/04 13:02:06 wosch Exp $ */ #ifndef lint @@ -331,7 +331,7 @@ void usage() { (void)fprintf(stderr, "%s\n%s\n", - "usage: mv [-f | -i] src target", - " mv [-f | -i] src1 ... srcN directory"); + "usage: mv [-f | -i] source target", + " mv [-f | -i] source ... directory"); exit(1); } |