diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-11-13 17:08:52 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-11-13 17:08:52 +0000 |
commit | 78bb116290d31160c0430197f52133bb455fd862 (patch) | |
tree | 785c094382a69e77138dd3dca69cc48431817658 /sbin/mdconfig | |
parent | 81d96ce8a4b0d1d3c6a154b6d6fe9a01ccc73be8 (diff) | |
download | src-78bb116290d31160c0430197f52133bb455fd862.tar.gz src-78bb116290d31160c0430197f52133bb455fd862.zip |
Sync usage() with manpage SYNOPSIS and code.
Notes
Notes:
svn path=/head/; revision=137669
Diffstat (limited to 'sbin/mdconfig')
-rw-r--r-- | sbin/mdconfig/mdconfig.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sbin/mdconfig/mdconfig.c b/sbin/mdconfig/mdconfig.c index 083779d4affc..d4cca40b1e49 100644 --- a/sbin/mdconfig/mdconfig.c +++ b/sbin/mdconfig/mdconfig.c @@ -40,10 +40,12 @@ int nflag; void usage() { - fprintf(stderr, "usage:\n"); - fprintf(stderr, "\tmdconfig -a -t type [-n] [-o [no]option]... [ -f file] [-s size] [-S sectorsize] [-u unit]\n"); - fprintf(stderr, "\tmdconfig -d -u unit\n"); - fprintf(stderr, "\tmdconfig -l [-n] [-u unit]\n"); + fprintf(stderr, +"usage: mdconfig -a -t type [-n] [-o [no]option] ... [ -f file]\n" +" [-s size] [-S sectorsize] [-u unit]\n" +" [-x sectors/track] [-y heads/cyl]\n" +" mdconfig -d -u unit\n" +" mdconfig -l [-n] [-u unit]\n"); fprintf(stderr, "\t\ttype = {malloc, preload, vnode, swap}\n"); fprintf(stderr, "\t\toption = {cluster, compress, reserve}\n"); fprintf(stderr, "\t\tsize = %%d (512 byte blocks), %%dk (kB), %%dm (MB) or %%dg (GB)\n"); |