svn commit: r219955 - head/sbin/umount

Ruslan Ermilov ru at FreeBSD.org
Thu Mar 24 12:35:10 UTC 2011


Author: ru
Date: Thu Mar 24 12:35:09 2011
New Revision: 219955
URL: http://svn.freebsd.org/changeset/base/219955

Log:
  It's possible to unmount multiple items at once, make it clear.

Modified:
  head/sbin/umount/umount.8
  head/sbin/umount/umount.c

Modified: head/sbin/umount/umount.8
==============================================================================
--- head/sbin/umount/umount.8	Thu Mar 24 12:04:42 2011	(r219954)
+++ head/sbin/umount/umount.8	Thu Mar 24 12:35:09 2011	(r219955)
@@ -37,7 +37,7 @@
 .Sh SYNOPSIS
 .Nm
 .Op Fl fv
-.Ar special | node | fsid
+.Ar special ... | node ... | fsid ...
 .Nm
 .Fl a | A
 .Op Fl F Ar fstab

Modified: head/sbin/umount/umount.c
==============================================================================
--- head/sbin/umount/umount.c	Thu Mar 24 12:04:42 2011	(r219954)
+++ head/sbin/umount/umount.c	Thu Mar 24 12:35:09 2011	(r219955)
@@ -599,7 +599,7 @@ usage(void)
 {
 
 	(void)fprintf(stderr, "%s\n%s\n",
-	    "usage: umount [-fv] special | node | fsid",
+	    "usage: umount [-fv] special ... | node ... | fsid ...",
 	    "       umount -a | -A [-F fstab] [-fv] [-h host] [-t type]");
 	exit(1);
 }


More information about the svn-src-head mailing list