diff options
author | wosch <wosch@FreeBSD.org> | 1996-11-04 00:53:12 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-11-04 00:53:12 +0000 |
commit | 90279ad4f4cb39d1da019ce7aa163baecbcb8405 (patch) | |
tree | 826c392e02638865cdb2277a659897f793b080c0 /sbin | |
parent | 83675d3c59678b648256a94220f9fb5ddb58b82f (diff) | |
download | FreeBSD-src-90279ad4f4cb39d1da019ce7aa163baecbcb8405.zip FreeBSD-src-90279ad4f4cb39d1da019ce7aa163baecbcb8405.tar.gz |
fix usage string
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/scsiformat/scsiformat.8 | 10 | ||||
-rw-r--r-- | sbin/scsiformat/scsiformat.sh | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sbin/scsiformat/scsiformat.8 b/sbin/scsiformat/scsiformat.8 index b781699..d0f18c1 100644 --- a/sbin/scsiformat/scsiformat.8 +++ b/sbin/scsiformat/scsiformat.8 @@ -30,6 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)scsiformat.8 5.1 (Berkeley) 6/5/93 +.\" $Id$ .\" .Dd June 5, 1993 .Dt SCSIFORMAT 8 @@ -39,8 +40,7 @@ .Nd format SCSI disks and show SCSI parameters .Sh SYNOPSIS .Nm scsiformat -.Op Fl w -.Op Fl q +.Op Fl qw .Op Fl p Ar page-control .Ar device-name .Sh DESCRIPTION @@ -77,13 +77,13 @@ gets saved settings (those that persist across power cycles). .It Li v shows which parameters are variable. .El -.It Fl w -Do actually format; by default, only the disk parameters will be -displayed. .It Fl q Quiet; suppress the mode page output. Only the inquiry string will be printed, so the operator can ensure he's going to format the intended drive. +.It Fl w +Do actually format; by default, only the disk parameters will be +displayed. .El .Sh DIAGNOSTICS These should mostly be self-explanatory. diff --git a/sbin/scsiformat/scsiformat.sh b/sbin/scsiformat/scsiformat.sh index 5c6dd88..9d2c132 100644 --- a/sbin/scsiformat/scsiformat.sh +++ b/sbin/scsiformat/scsiformat.sh @@ -26,9 +26,9 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# $Id$ +# $Id: scsiformat.sh,v 1.1 1995/09/17 12:47:01 joerg Exp $ # -# scsiformat [-wq] [-p page-control] raw-device-name +# scsiformat [-qw] [-p page-control] raw-device-name # PATH="/sbin:/usr/sbin:/bin:/usr/bin"; export PATH @@ -40,7 +40,7 @@ PAGE=0 usage() { - echo "Usage: scsiformat [-wq] [-p page-control] raw-device-name" 1>&2 + echo "usage: scsiformat [-qw] [-p page-control] raw-device-name" 1>&2 exit 2 } |