diff options
-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); } |