Some cosmetic updates. Changed "OPTIONS" to "Options".
-Erik
This commit is contained in:
parent
028fb625f5
commit
2086e3d679
2
Makefile
2
Makefile
@ -133,7 +133,7 @@ olddoc/BusyBox.html: olddoc/busybox.lineo.com/BusyBox.html
|
|||||||
- ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
|
- ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
|
||||||
|
|
||||||
olddoc/busybox.lineo.com/BusyBox.html: docs/busybox.pod
|
olddoc/busybox.lineo.com/BusyBox.html: docs/busybox.pod
|
||||||
- pod2html docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
|
- pod2html --noindex docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
|
||||||
- rm -f pod2html*
|
- rm -f pod2html*
|
||||||
|
|
||||||
busybox: $(OBJECTS)
|
busybox: $(OBJECTS)
|
||||||
|
@ -594,7 +594,7 @@ Usage: fsck.minix [B<-larvsmf>] /dev/name
|
|||||||
|
|
||||||
Performs a consistency check for MINIX filesystems.
|
Performs a consistency check for MINIX filesystems.
|
||||||
|
|
||||||
OPTIONS:
|
Options:
|
||||||
|
|
||||||
-l Lists all filenames
|
-l Lists all filenames
|
||||||
-r Perform interactive repairs
|
-r Perform interactive repairs
|
||||||
@ -612,7 +612,7 @@ Usage: grep [OPTIONS]... PATTERN [FILE]...
|
|||||||
|
|
||||||
Search for PATTERN in each FILE or standard input.
|
Search for PATTERN in each FILE or standard input.
|
||||||
|
|
||||||
OPTIONS:
|
Options:
|
||||||
|
|
||||||
-h suppress the prefixing filename on output
|
-h suppress the prefixing filename on output
|
||||||
-i ignore case distinctions
|
-i ignore case distinctions
|
||||||
@ -1124,7 +1124,7 @@ Usage: mkfs.minix [B<-c> | B<-l> filename] [B<-nXX>] [B<-iXX>] /dev/name [blocks
|
|||||||
|
|
||||||
Make a MINIX filesystem.
|
Make a MINIX filesystem.
|
||||||
|
|
||||||
OPTIONS:
|
Options:
|
||||||
|
|
||||||
-c Check the device for bad blocks
|
-c Check the device for bad blocks
|
||||||
-n [14|30] Specify the maximum length of filenames
|
-n [14|30] Specify the maximum length of filenames
|
||||||
@ -2063,4 +2063,4 @@ Enrique Zanardi <ezanardi@ull.es>
|
|||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
# $Id: busybox.pod,v 1.53 2000/07/04 20:07:13 andersen Exp $
|
# $Id: busybox.pod,v 1.54 2000/07/04 22:17:01 andersen Exp $
|
||||||
|
@ -35,7 +35,7 @@ static const char grep_usage[] =
|
|||||||
"grep [-ihHnqvs] pattern [files...]\n"
|
"grep [-ihHnqvs] pattern [files...]\n"
|
||||||
#ifndef BB_FEATURE_TRIVIAL_HELP
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
||||||
"\nSearch for PATTERN in each FILE or standard input.\n\n"
|
"\nSearch for PATTERN in each FILE or standard input.\n\n"
|
||||||
"OPTIONS:\n"
|
"Options:\n"
|
||||||
"\t-H\tprefix output lines with filename where match was found\n"
|
"\t-H\tprefix output lines with filename where match was found\n"
|
||||||
"\t-h\tsuppress the prefixing filename on output\n"
|
"\t-h\tsuppress the prefixing filename on output\n"
|
||||||
"\t-i\tignore case distinctions\n"
|
"\t-i\tignore case distinctions\n"
|
||||||
|
@ -203,7 +203,7 @@ static void show_usage(void)
|
|||||||
#ifndef BB_FEATURE_TRIVIAL_HELP
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"\nPerforms a consistency check for MINIX filesystems.\n\n");
|
"\nPerforms a consistency check for MINIX filesystems.\n\n");
|
||||||
fprintf(stderr, "OPTIONS:\n");
|
fprintf(stderr, "Options:\n");
|
||||||
fprintf(stderr, "\t-l\tLists all filenames\n");
|
fprintf(stderr, "\t-l\tLists all filenames\n");
|
||||||
fprintf(stderr, "\t-r\tPerform interactive repairs\n");
|
fprintf(stderr, "\t-r\tPerform interactive repairs\n");
|
||||||
fprintf(stderr, "\t-a\tPerform automatic repairs\n");
|
fprintf(stderr, "\t-a\tPerform automatic repairs\n");
|
||||||
|
2
grep.c
2
grep.c
@ -35,7 +35,7 @@ static const char grep_usage[] =
|
|||||||
"grep [-ihHnqvs] pattern [files...]\n"
|
"grep [-ihHnqvs] pattern [files...]\n"
|
||||||
#ifndef BB_FEATURE_TRIVIAL_HELP
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
||||||
"\nSearch for PATTERN in each FILE or standard input.\n\n"
|
"\nSearch for PATTERN in each FILE or standard input.\n\n"
|
||||||
"OPTIONS:\n"
|
"Options:\n"
|
||||||
"\t-H\tprefix output lines with filename where match was found\n"
|
"\t-H\tprefix output lines with filename where match was found\n"
|
||||||
"\t-h\tsuppress the prefixing filename on output\n"
|
"\t-h\tsuppress the prefixing filename on output\n"
|
||||||
"\t-i\tignore case distinctions\n"
|
"\t-i\tignore case distinctions\n"
|
||||||
|
@ -183,7 +183,7 @@ static volatile void show_usage()
|
|||||||
program_name);
|
program_name);
|
||||||
#ifndef BB_FEATURE_TRIVIAL_HELP
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
||||||
fprintf(stderr, "\nMake a MINIX filesystem.\n\n");
|
fprintf(stderr, "\nMake a MINIX filesystem.\n\n");
|
||||||
fprintf(stderr, "OPTIONS:\n");
|
fprintf(stderr, "Options:\n");
|
||||||
fprintf(stderr, "\t-c\t\tCheck the device for bad blocks\n");
|
fprintf(stderr, "\t-c\t\tCheck the device for bad blocks\n");
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"\t-n [14|30]\tSpecify the maximum length of filenames\n");
|
"\t-n [14|30]\tSpecify the maximum length of filenames\n");
|
||||||
|
@ -203,7 +203,7 @@ static void show_usage(void)
|
|||||||
#ifndef BB_FEATURE_TRIVIAL_HELP
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"\nPerforms a consistency check for MINIX filesystems.\n\n");
|
"\nPerforms a consistency check for MINIX filesystems.\n\n");
|
||||||
fprintf(stderr, "OPTIONS:\n");
|
fprintf(stderr, "Options:\n");
|
||||||
fprintf(stderr, "\t-l\tLists all filenames\n");
|
fprintf(stderr, "\t-l\tLists all filenames\n");
|
||||||
fprintf(stderr, "\t-r\tPerform interactive repairs\n");
|
fprintf(stderr, "\t-r\tPerform interactive repairs\n");
|
||||||
fprintf(stderr, "\t-a\tPerform automatic repairs\n");
|
fprintf(stderr, "\t-a\tPerform automatic repairs\n");
|
||||||
|
@ -183,7 +183,7 @@ static volatile void show_usage()
|
|||||||
program_name);
|
program_name);
|
||||||
#ifndef BB_FEATURE_TRIVIAL_HELP
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
||||||
fprintf(stderr, "\nMake a MINIX filesystem.\n\n");
|
fprintf(stderr, "\nMake a MINIX filesystem.\n\n");
|
||||||
fprintf(stderr, "OPTIONS:\n");
|
fprintf(stderr, "Options:\n");
|
||||||
fprintf(stderr, "\t-c\t\tCheck the device for bad blocks\n");
|
fprintf(stderr, "\t-c\t\tCheck the device for bad blocks\n");
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"\t-n [14|30]\tSpecify the maximum length of filenames\n");
|
"\t-n [14|30]\tSpecify the maximum length of filenames\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user