Further improvements to online help

diff .//ReadMe.c~current~ .//ReadMe.c
This commit is contained in:
Neil Brown 2006-04-17 13:12:41 +00:00
parent e968ba605a
commit e5a5d81e4a
1 changed files with 11 additions and 6 deletions

View File

@ -182,12 +182,14 @@ char Usage[] =
; ;
char Help[] = char Help[] =
"mdadm is used for building, managing, and monitoring\n"
"Linux md devices (aka RAID arrays)\n"
"Usage: mdadm --create device options...\n" "Usage: mdadm --create device options...\n"
" Create a new array.\n" " Create a new array from unused devices.\n"
" mdadm --assemble device options...\n" " mdadm --assemble device options...\n"
" Assemble a previously created array.\n" " Assemble a previously created array.\n"
" mdadm --build device options...\n" " mdadm --build device options...\n"
" Make an array without metadata.\n" " Create or assemble an array without metadata.\n"
" mdadm --manage device options...\n" " mdadm --manage device options...\n"
" make changes to an existing array.\n" " make changes to an existing array.\n"
" mdadm --misc options... devices\n" " mdadm --misc options... devices\n"
@ -196,8 +198,11 @@ char Help[] =
" Monitor one or more array for significant changes.\n" " Monitor one or more array for significant changes.\n"
" mdadm device options...\n" " mdadm device options...\n"
" Shorthand for --manage.\n" " Shorthand for --manage.\n"
" mdadm is used for building, managing, and monitoring\n" "Any parameter that does not start with '-' is treated as a device name\n"
" Linux md devices (aka RAID arrays)\n" "or, for --examine-bitmap, a file name.\n"
"The first such name is often the name of an md device. Subsequent\n"
"names are often names of component devices.\n"
"\n"
" For detailed help on the above major modes use --help after the mode\n" " For detailed help on the above major modes use --help after the mode\n"
" e.g.\n" " e.g.\n"
" mdadm --assemble --help\n" " mdadm --assemble --help\n"
@ -209,7 +214,7 @@ char OptionHelp[] =
"Any parameter that does not start with '-' is treated as a device name\n" "Any parameter that does not start with '-' is treated as a device name\n"
"or, for --examine-bitmap, a file name.\n" "or, for --examine-bitmap, a file name.\n"
"The first such name is often the name of an md device. Subsequent\n" "The first such name is often the name of an md device. Subsequent\n"
"names are often names of component devices." "names are often names of component devices.\n"
"\n" "\n"
"Some common options are:\n" "Some common options are:\n"
" --help -h : General help message or, after above option,\n" " --help -h : General help message or, after above option,\n"
@ -222,7 +227,7 @@ char OptionHelp[] =
" --force -f : Override normal checks and be more forceful\n" " --force -f : Override normal checks and be more forceful\n"
"\n" "\n"
" --assemble -A : Assemble an array\n" " --assemble -A : Assemble an array\n"
" --build -B : Build a legacy array\n" " --build -B : Build an array without metadata\n"
" --create -C : Create a new array\n" " --create -C : Create a new array\n"
" --detail -D : Display details of an array\n" " --detail -D : Display details of an array\n"
" --examine -E : Examine superblock on an array component\n" " --examine -E : Examine superblock on an array component\n"