mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
+ wrap things in B<> to make pod2man happy
This commit is contained in:
parent
ab01ed12bd
commit
9057b6a918
@ -567,7 +567,7 @@ Example:
|
|||||||
Usage: gzip [OPTION]... FILE
|
Usage: gzip [OPTION]... FILE
|
||||||
|
|
||||||
Compress FILE with maximum compression.
|
Compress FILE with maximum compression.
|
||||||
When FILE is '-', reads standard input. Implies -c.
|
When FILE is '-', reads standard input. Implies B<-c>.
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
|
||||||
@ -761,11 +761,12 @@ Example:
|
|||||||
|
|
||||||
=item killall
|
=item killall
|
||||||
|
|
||||||
Usage: killall [-signal] process-name [process-name ...]
|
Usage: killall [B<-signal>] process-name [process-name ...]
|
||||||
|
|
||||||
Send a signal (default is SIGTERM) to the specified process(es).
|
Send a signal (default is SIGTERM) to the specified process(es).
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
|
||||||
-l List all signal names and numbers.
|
-l List all signal names and numbers.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
@ -959,6 +960,7 @@ Usage: mkfifo [OPTIONS] name
|
|||||||
Creates a named pipe (identical to 'mknod name p')
|
Creates a named pipe (identical to 'mknod name p')
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
|
||||||
-m create the pipe using the specified mode (default a=rw)
|
-m create the pipe using the specified mode (default a=rw)
|
||||||
|
|
||||||
-------------------------------
|
-------------------------------
|
||||||
@ -986,6 +988,7 @@ Usage: mknod [OPTIONS] NAME TYPE MAJOR MINOR
|
|||||||
Create a special file (block, character, or pipe).
|
Create a special file (block, character, or pipe).
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
|
||||||
-m create the special file using the specified mode (default a=rw)
|
-m create the special file using the specified mode (default a=rw)
|
||||||
|
|
||||||
TYPEs include:
|
TYPEs include:
|
||||||
@ -1084,7 +1087,7 @@ Example:
|
|||||||
|
|
||||||
=item mt
|
=item mt
|
||||||
|
|
||||||
Usage: mt [-f device] opcode value
|
Usage: mt [B<-f> device] opcode value
|
||||||
|
|
||||||
Control magnetic tape drive operation
|
Control magnetic tape drive operation
|
||||||
|
|
||||||
@ -1251,7 +1254,7 @@ Example:
|
|||||||
|
|
||||||
=item sed
|
=item sed
|
||||||
|
|
||||||
Usage: sed [-n] -e script [file...]
|
Usage: sed [B<-n>] B<-e> script [file...]
|
||||||
|
|
||||||
Allowed sed scripts come in the following form:
|
Allowed sed scripts come in the following form:
|
||||||
|
|
||||||
@ -1349,7 +1352,7 @@ Example:
|
|||||||
|
|
||||||
=item sort
|
=item sort
|
||||||
|
|
||||||
Usage: sort [-n] [-r] [FILE]...
|
Usage: sort [B<-n>] [B<-r>] [FILE]...
|
||||||
|
|
||||||
Sorts lines of text in the specified files
|
Sorts lines of text in the specified files
|
||||||
|
|
||||||
@ -1436,7 +1439,7 @@ Example:
|
|||||||
|
|
||||||
=item tar
|
=item tar
|
||||||
|
|
||||||
Usage: tar -[cxtvO] [--exclude File] [-f tarFile] [FILE] ...
|
Usage: tar -[cxtvO] [B<--exclude> File] [B<-f> tarFile] [FILE] ...
|
||||||
|
|
||||||
Create, extract, or list files from a tar file. Note that
|
Create, extract, or list files from a tar file. Note that
|
||||||
this version of tar treats hard links as separate files.
|
this version of tar treats hard links as separate files.
|
||||||
@ -1509,7 +1512,7 @@ Example:
|
|||||||
|
|
||||||
=item touch
|
=item touch
|
||||||
|
|
||||||
Usage: touch [-c] file [file ...]
|
Usage: touch [B<-c>] file [file ...]
|
||||||
|
|
||||||
Update the last-modified date on (or create) the selected file[s].
|
Update the last-modified date on (or create) the selected file[s].
|
||||||
|
|
||||||
@ -1525,10 +1528,12 @@ Example:
|
|||||||
|
|
||||||
=item tr
|
=item tr
|
||||||
|
|
||||||
Usage: tr [-csu] string1 string2
|
Usage:
|
||||||
tr [-cu] -d string1
|
|
||||||
tr [-cu] -s string1
|
tr [-csu] string1 string2
|
||||||
tr [-cu] -ds string1 string2
|
tr [-cu] -d string1
|
||||||
|
tr [-cu] -s string1
|
||||||
|
tr [-cu] -ds string1 string2
|
||||||
|
|
||||||
Translate, squeeze, and/or delete characters from standard
|
Translate, squeeze, and/or delete characters from standard
|
||||||
input, writing to standard output.
|
input, writing to standard output.
|
||||||
@ -1675,4 +1680,4 @@ Enrique Zanardi <ezanardi@ull.es>
|
|||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
# $Id: busybox.pod,v 1.10 2000/04/15 16:34:54 erik Exp $
|
# $Id: busybox.pod,v 1.11 2000/04/16 10:22:28 beppu Exp $
|
||||||
|
Loading…
Reference in New Issue
Block a user