From owner-svn-src-all@FreeBSD.ORG Thu Mar 24 12:35:10 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 497D01065670; Thu, 24 Mar 2011 12:35:10 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 398388FC16; Thu, 24 Mar 2011 12:35:10 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p2OCZAJw033150; Thu, 24 Mar 2011 12:35:10 GMT (envelope-from ru@svn.freebsd.org) Received: (from ru@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p2OCZAFk033147; Thu, 24 Mar 2011 12:35:10 GMT (envelope-from ru@svn.freebsd.org) Message-Id: <201103241235.p2OCZAFk033147@svn.freebsd.org> From: Ruslan Ermilov Date: Thu, 24 Mar 2011 12:35:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r219955 - head/sbin/umount X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 12:35:10 -0000 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); }