diff options
author | John Beppu <beppu@lbox.org> | 2000-04-16 10:22:28 +0000 |
---|---|---|
committer | John Beppu <beppu@lbox.org> | 2000-04-16 10:22:28 +0000 |
commit | 9057b6a91837f45b05a293b699e1f30191acc2c0 (patch) | |
tree | 60d11e067ba1d28b9dbbe379e69bdaf2f23c2ab1 | |
parent | ab01ed12bd60f2ab598b5f41477fce460144fb3b (diff) | |
download | busybox-w32-9057b6a91837f45b05a293b699e1f30191acc2c0.tar.gz busybox-w32-9057b6a91837f45b05a293b699e1f30191acc2c0.tar.bz2 busybox-w32-9057b6a91837f45b05a293b699e1f30191acc2c0.zip |
+ wrap things in B<> to make pod2man happy
-rw-r--r-- | docs/busybox.pod | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod index 7d185fa15..144c62719 100644 --- a/docs/busybox.pod +++ b/docs/busybox.pod | |||
@@ -567,7 +567,7 @@ Example: | |||
567 | Usage: gzip [OPTION]... FILE | 567 | Usage: gzip [OPTION]... FILE |
568 | 568 | ||
569 | Compress FILE with maximum compression. | 569 | Compress FILE with maximum compression. |
570 | When FILE is '-', reads standard input. Implies -c. | 570 | When FILE is '-', reads standard input. Implies B<-c>. |
571 | 571 | ||
572 | Options: | 572 | Options: |
573 | 573 | ||
@@ -761,11 +761,12 @@ Example: | |||
761 | 761 | ||
762 | =item killall | 762 | =item killall |
763 | 763 | ||
764 | Usage: killall [-signal] process-name [process-name ...] | 764 | Usage: killall [B<-signal>] process-name [process-name ...] |
765 | 765 | ||
766 | Send a signal (default is SIGTERM) to the specified process(es). | 766 | Send a signal (default is SIGTERM) to the specified process(es). |
767 | 767 | ||
768 | Options: | 768 | Options: |
769 | |||
769 | -l List all signal names and numbers. | 770 | -l List all signal names and numbers. |
770 | 771 | ||
771 | Example: | 772 | Example: |
@@ -959,6 +960,7 @@ Usage: mkfifo [OPTIONS] name | |||
959 | Creates a named pipe (identical to 'mknod name p') | 960 | Creates a named pipe (identical to 'mknod name p') |
960 | 961 | ||
961 | Options: | 962 | Options: |
963 | |||
962 | -m create the pipe using the specified mode (default a=rw) | 964 | -m create the pipe using the specified mode (default a=rw) |
963 | 965 | ||
964 | ------------------------------- | 966 | ------------------------------- |
@@ -986,6 +988,7 @@ Usage: mknod [OPTIONS] NAME TYPE MAJOR MINOR | |||
986 | Create a special file (block, character, or pipe). | 988 | Create a special file (block, character, or pipe). |
987 | 989 | ||
988 | Options: | 990 | Options: |
991 | |||
989 | -m create the special file using the specified mode (default a=rw) | 992 | -m create the special file using the specified mode (default a=rw) |
990 | 993 | ||
991 | TYPEs include: | 994 | TYPEs include: |
@@ -1084,7 +1087,7 @@ Example: | |||
1084 | 1087 | ||
1085 | =item mt | 1088 | =item mt |
1086 | 1089 | ||
1087 | Usage: mt [-f device] opcode value | 1090 | Usage: mt [B<-f> device] opcode value |
1088 | 1091 | ||
1089 | Control magnetic tape drive operation | 1092 | Control magnetic tape drive operation |
1090 | 1093 | ||
@@ -1251,7 +1254,7 @@ Example: | |||
1251 | 1254 | ||
1252 | =item sed | 1255 | =item sed |
1253 | 1256 | ||
1254 | Usage: sed [-n] -e script [file...] | 1257 | Usage: sed [B<-n>] B<-e> script [file...] |
1255 | 1258 | ||
1256 | Allowed sed scripts come in the following form: | 1259 | Allowed sed scripts come in the following form: |
1257 | 1260 | ||
@@ -1349,7 +1352,7 @@ Example: | |||
1349 | 1352 | ||
1350 | =item sort | 1353 | =item sort |
1351 | 1354 | ||
1352 | Usage: sort [-n] [-r] [FILE]... | 1355 | Usage: sort [B<-n>] [B<-r>] [FILE]... |
1353 | 1356 | ||
1354 | Sorts lines of text in the specified files | 1357 | Sorts lines of text in the specified files |
1355 | 1358 | ||
@@ -1436,7 +1439,7 @@ Example: | |||
1436 | 1439 | ||
1437 | =item tar | 1440 | =item tar |
1438 | 1441 | ||
1439 | Usage: tar -[cxtvO] [--exclude File] [-f tarFile] [FILE] ... | 1442 | Usage: tar -[cxtvO] [B<--exclude> File] [B<-f> tarFile] [FILE] ... |
1440 | 1443 | ||
1441 | Create, extract, or list files from a tar file. Note that | 1444 | Create, extract, or list files from a tar file. Note that |
1442 | this version of tar treats hard links as separate files. | 1445 | this version of tar treats hard links as separate files. |
@@ -1509,7 +1512,7 @@ Example: | |||
1509 | 1512 | ||
1510 | =item touch | 1513 | =item touch |
1511 | 1514 | ||
1512 | Usage: touch [-c] file [file ...] | 1515 | Usage: touch [B<-c>] file [file ...] |
1513 | 1516 | ||
1514 | Update the last-modified date on (or create) the selected file[s]. | 1517 | Update the last-modified date on (or create) the selected file[s]. |
1515 | 1518 | ||
@@ -1525,10 +1528,12 @@ Example: | |||
1525 | 1528 | ||
1526 | =item tr | 1529 | =item tr |
1527 | 1530 | ||
1528 | Usage: tr [-csu] string1 string2 | 1531 | Usage: |
1529 | tr [-cu] -d string1 | 1532 | |
1530 | tr [-cu] -s string1 | 1533 | tr [-csu] string1 string2 |
1531 | tr [-cu] -ds string1 string2 | 1534 | tr [-cu] -d string1 |
1535 | tr [-cu] -s string1 | ||
1536 | tr [-cu] -ds string1 string2 | ||
1532 | 1537 | ||
1533 | Translate, squeeze, and/or delete characters from standard | 1538 | Translate, squeeze, and/or delete characters from standard |
1534 | input, writing to standard output. | 1539 | input, writing to standard output. |
@@ -1675,4 +1680,4 @@ Enrique Zanardi <ezanardi@ull.es> | |||
1675 | 1680 | ||
1676 | =cut | 1681 | =cut |
1677 | 1682 | ||
1678 | # $Id: busybox.pod,v 1.10 2000/04/15 16:34:54 erik Exp $ | 1683 | # $Id: busybox.pod,v 1.11 2000/04/16 10:22:28 beppu Exp $ |