aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJohan Karlsson <johan@FreeBSD.org>2002-07-09 17:45:13 +0000
committerJohan Karlsson <johan@FreeBSD.org>2002-07-09 17:45:13 +0000
commit0f7109e8c2564448c875710592d4d9090f0eb799 (patch)
tree51c24fce43aa2dbefe3010c7fe5013980fe76fe7 /bin
parentd1e52a1c8dfa8ebb6c11ac2122a8194cfac70812 (diff)
downloadsrc-0f7109e8c2564448c875710592d4d9090f0eb799.tar.gz
src-0f7109e8c2564448c875710592d4d9090f0eb799.zip
Update usage for the addition of -n in rev 1.35 of mv.c.
Approved by: obrien, sheldonh (mentor).
Notes
Notes: svn path=/head/; revision=99678
Diffstat (limited to 'bin')
-rw-r--r--bin/mv/mv.12
-rw-r--r--bin/mv/mv.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/mv/mv.1 b/bin/mv/mv.1
index 6895180634dc..d034727f0263 100644
--- a/bin/mv/mv.1
+++ b/bin/mv/mv.1
@@ -47,7 +47,7 @@
.Op Fl v
.Ar source target
.Nm
-.Op Fl f | Fl i
+.Op Fl f | Fl i | Fl n
.Op Fl v
.Ar source ... directory
.Sh DESCRIPTION
diff --git a/bin/mv/mv.c b/bin/mv/mv.c
index f8dc938533f5..3f91ca0396e5 100644
--- a/bin/mv/mv.c
+++ b/bin/mv/mv.c
@@ -380,7 +380,7 @@ usage(void)
{
(void)fprintf(stderr, "%s\n%s\n",
- "usage: mv [-f | -i] [-v] source target",
- " mv [-f | -i] [-v] source ... directory");
+ "usage: mv [-f | -i | -n] [-v] source target",
+ " mv [-f | -i | -n] [-v] source ... directory");
exit(EX_USAGE);
}