diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-11-14 02:57:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-11-14 02:57:29 +0000 |
commit | 5ac4e796ab65f0ab2514982a0b736ed185b71681 (patch) | |
tree | 0a7aa303df52b25f34eca7cb6da19071822a3885 /usr.bin | |
parent | 8c40cc2c58bce394e853e8cfab1dde400d093b18 (diff) |
use $ or # before commands in examples
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/asa/asa.1 | 6 | ||||
-rw-r--r-- | usr.bin/audioctl/audioctl.1 | 8 | ||||
-rw-r--r-- | usr.bin/find/find.1 | 10 | ||||
-rw-r--r-- | usr.bin/fsplit/fsplit.1 | 4 | ||||
-rw-r--r-- | usr.bin/jot/jot.1 | 22 | ||||
-rw-r--r-- | usr.bin/lam/lam.1 | 10 | ||||
-rw-r--r-- | usr.bin/lorder/lorder.1 | 4 | ||||
-rw-r--r-- | usr.bin/mail/mail.1 | 4 | ||||
-rw-r--r-- | usr.bin/mixerctl/mixerctl.1 | 4 | ||||
-rw-r--r-- | usr.bin/printf/printf.1 | 6 | ||||
-rw-r--r-- | usr.bin/radioctl/radioctl.1 | 4 | ||||
-rw-r--r-- | usr.bin/rpcinfo/rpcinfo.8 | 10 | ||||
-rw-r--r-- | usr.bin/rsh/rsh.1 | 6 | ||||
-rw-r--r-- | usr.bin/su/su.1 | 10 | ||||
-rw-r--r-- | usr.bin/talk/talk.1 | 4 | ||||
-rw-r--r-- | usr.bin/tr/tr.1 | 8 | ||||
-rw-r--r-- | usr.bin/usbhidaction/usbhidaction.1 | 4 | ||||
-rw-r--r-- | usr.bin/usbhidctl/usbhidctl.1 | 8 | ||||
-rw-r--r-- | usr.bin/uuencode/uuencode.1 | 4 |
19 files changed, 68 insertions, 68 deletions
diff --git a/usr.bin/asa/asa.1 b/usr.bin/asa/asa.1 index 41cb667a534..6d15965096d 100644 --- a/usr.bin/asa/asa.1 +++ b/usr.bin/asa/asa.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: asa.1,v 1.9 2000/03/23 21:10:12 aaron Exp $ +.\" $OpenBSD: asa.1,v 1.10 2002/11/14 02:57:27 deraadt Exp $ .\" $NetBSD: asa.1,v 1.4 1995/03/26 02:25:05 glass Exp $ .\" .\" Copyright (c) 1993 Winning Strategies, Inc. @@ -80,13 +80,13 @@ utility exits 0 on success or >0 if an error occurred. To view a file containing the output of a .Tn FORTRAN program: .Pp -.Dl asa file +.Dl $ asa file .Pp To format the output of a .Tn FORTRAN program and redirect it to a line-printer. .Pp -.Dl a.out | asa | lpr +.Dl $ a.out | asa | lpr .Sh SEE ALSO .Xr f77 1 .Sh STANDARDS diff --git a/usr.bin/audioctl/audioctl.1 b/usr.bin/audioctl/audioctl.1 index 4132960c9a2..77a14e1e7dc 100644 --- a/usr.bin/audioctl/audioctl.1 +++ b/usr.bin/audioctl/audioctl.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: audioctl.1,v 1.12 2001/05/01 17:58:02 aaron Exp $ +.\" $OpenBSD: audioctl.1,v 1.13 2002/11/14 02:57:27 deraadt Exp $ .\" $NetBSD: audioctl.1,v 1.7 1998/04/27 16:55:23 augustss Exp $ .\" Copyright (c) 1997 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -85,17 +85,17 @@ Suppress printing of the variable name. .Sh EXAMPLES To set the playing sampling rate to 11025 you can enter .Pp -.Dl audioctl -w play.sample_rate=11025 +.Dl $ audioctl -w play.sample_rate=11025 .Pp Note that many of the variables that can be inspected and changed are reset when the device is opened. This can be circumvented like so: .Pp -.Dl (cat file.au; audioctl -f /dev/stdout -a) > /dev/audio +.Dl $ (cat file.au; audioctl -f /dev/stdout -a) > /dev/audio .Pp or .Pp -.Dl (audioctl -f /dev/stdout -w blocksize=1024; cat file.au) > /dev/audio +.Dl $ (audioctl -f /dev/stdout -w blocksize=1024; cat file.au) > /dev/audio .Sh ENVIRONMENT .Bl -tag -width AUDIOCTLDEVICE .It Ev AUDIOCTLDEVICE diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1 index 9f9d9265285..2d6e69793b4 100644 --- a/usr.bin/find/find.1 +++ b/usr.bin/find/find.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: find.1,v 1.35 2002/05/17 15:04:32 millert Exp $ +.\" $OpenBSD: find.1,v 1.36 2002/11/14 02:57:27 deraadt Exp $ .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. .\" @@ -498,21 +498,21 @@ to be a separate argument to .Sh EXAMPLES The following examples are shown as given to the shell: .Bl -tag -width findx -.It Li "find / \e! -name \*q*.c\*q -print" +.It Li "$ find / \e! -name \*q*.c\*q -print" Print out a list of all the files whose names do not end in .Dq \&.c . -.It Li "find / -newer ttt -user wnj -print" +.It Li "$ find / -newer ttt -user wnj -print" Print out a list of all the files owned by user .Dq wnj that are newer than the file .Dq ttt . -.It Li "find / \e! \e( -newer ttt -user wnj \e) -print" +.It Li "$ find / \e! \e( -newer ttt -user wnj \e) -print" Print out a list of all the files which are not both newer than .Dq ttt and owned by .Dq wnj . -.It Li "find / \e( -newer ttt -or -user wnj \e) -print" +.It Li "$ find / \e( -newer ttt -or -user wnj \e) -print" Print out a list of all the files that are either owned by .Dq wnj or diff --git a/usr.bin/fsplit/fsplit.1 b/usr.bin/fsplit/fsplit.1 index 9f08b6c2c60..c68fb3b1771 100644 --- a/usr.bin/fsplit/fsplit.1 +++ b/usr.bin/fsplit/fsplit.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fsplit.1,v 1.9 2000/11/10 05:10:26 aaron Exp $ +.\" $OpenBSD: fsplit.1,v 1.10 2002/11/14 02:57:27 deraadt Exp $ .\" $NetBSD: fsplit.1,v 1.3 1995/09/28 05:15:06 perry Exp $ .\" .\" Copyright (c) 1983, 1990, 1993 @@ -80,7 +80,7 @@ When the option is used, only the specified subprogram units are split into separate files. e.g., .Pp -.Dl fsplit -e readit -e doit prog.f +.Dl $ fsplit -e readit -e doit prog.f .Pp will split .Dq readit diff --git a/usr.bin/jot/jot.1 b/usr.bin/jot/jot.1 index 6a61286176b..4971d2885f9 100644 --- a/usr.bin/jot/jot.1 +++ b/usr.bin/jot/jot.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: jot.1,v 1.7 2001/07/20 19:09:45 mpech Exp $ +.\" $OpenBSD: jot.1,v 1.8 2002/11/14 02:57:27 deraadt Exp $ .\" $NetBSD: jot.1,v 1.2 1994/11/14 20:27:36 jtc Exp $ .\" .\" Copyright (c) 1993 @@ -144,52 +144,52 @@ a function in APL. .Sh EXAMPLES The command .Pp -.Dl jot 21 \-1 1.00 +.Dl $ jot 21 \-1 1.00 .Pp prints 21 evenly spaced numbers increasing from \-1 to 1. The ASCII character set is generated with .Pp -.Dl jot \-c 128 0 +.Dl $ jot \-c 128 0 .Pp and the strings xaa through xaz with .Pp -.Dl jot \-w xa%c 26 a +.Dl $ jot \-w xa%c 26 a .Pp while 20 random 8-letter strings are produced with .Pp -.Dl "jot \-r \-c 160 a z | rs \-g 0 8" +.Dl "$ jot \-r \-c 160 a z | rs \-g 0 8" .Pp Infinitely many .Xr yes 1 's may be obtained through .Pp -.Dl jot \-b yes 0 +.Dl $ jot \-b yes 0 .Pp and thirty .Xr ed 1 substitution commands applying to lines 2, 7, 12, etc. is the result of .Pp -.Dl jot \-w %ds/old/new/ 30 2 \- 5 +.Dl $ jot \-w %ds/old/new/ 30 2 \- 5 .Pp The stuttering sequence 9, 9, 8, 8, 7, etc. can be produced by suitable choice of precision and step size, as in .Pp -.Dl jot 0 9 \- \-.5 +.Dl $ jot 0 9 \- \-.5 .Pp and a file containing exactly 1024 bytes is created with .Pp -.Dl jot \-b x 512 > block +.Dl $ jot \-b x 512 > block .Pp Finally, to set tabs four spaces apart starting from column 10 and ending in column 132, use .Pp -.Dl expand \-\`jot \-s, \- 10 132 4\` +.Dl $ expand \-\`jot \-s, \- 10 132 4\` .Pp and to print all lines 80 characters or longer, .Pp -.Dl grep \`jot \-s \&"\&" \-b . 80\` +.Dl $ grep \`jot \-s \&"\&" \-b . 80\` .Sh SEE ALSO .Xr ed 1 , .Xr expand 1 , diff --git a/usr.bin/lam/lam.1 b/usr.bin/lam/lam.1 index 296b167c773..92246cab6eb 100644 --- a/usr.bin/lam/lam.1 +++ b/usr.bin/lam/lam.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: lam.1,v 1.2 1996/06/26 05:34:49 deraadt Exp $ +.\" $OpenBSD: lam.1,v 1.3 2002/11/14 02:57:27 deraadt Exp $ .\" $NetBSD: lam.1,v 1.2 1994/11/14 20:27:40 jtc Exp $ .\" .\" Copyright (c) 1993 @@ -109,22 +109,22 @@ To print files simultaneously for easy viewing use .PP The command .IC -lam file1 file2 file3 file4 +$ lam file1 file2 file3 file4 .NC joins 4 files together along each line. To merge the lines from four different files use .IC -lam file1 \-S "\\ +$ lam file1 \-S "\\ .br " file2 file3 file4 .NC Every 2 lines of a file may be joined on one line with .IC -lam \- \- < file +$ lam \- \- < file .NC and a form letter with substitutions keyed by `@' can be done with .IC -lam \-t @ letter changes +$ lam \-t @ letter changes .NC .SH SEE ALSO join(1), pr(1), printf(3) diff --git a/usr.bin/lorder/lorder.1 b/usr.bin/lorder/lorder.1 index 285b822cec3..739bfe0de47 100644 --- a/usr.bin/lorder/lorder.1 +++ b/usr.bin/lorder/lorder.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: lorder.1,v 1.5 2000/11/10 05:10:32 aaron Exp $ +.\" $OpenBSD: lorder.1,v 1.6 2002/11/14 02:57:27 deraadt Exp $ .\" $NetBSD: lorder.1,v 1.5 1995/08/31 22:42:44 jtc Exp $ .\" .\" Copyright (c) 1990, 1993 @@ -61,7 +61,7 @@ object modules so that all references may be resolved in a single pass of the loader. .Sh EXAMPLES .Bd -literal -ar cr library.a `lorder ${OBJS} | tsort` +$ ar cr library.a `lorder ${OBJS} | tsort` .Ed .Sh SEE ALSO .Xr ar 1 , diff --git a/usr.bin/mail/mail.1 b/usr.bin/mail/mail.1 index 6c8439970e5..e4c029ffee6 100644 --- a/usr.bin/mail/mail.1 +++ b/usr.bin/mail/mail.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mail.1,v 1.34 2002/01/24 20:33:45 mickey Exp $ +.\" $OpenBSD: mail.1,v 1.35 2002/11/14 02:57:28 deraadt Exp $ .\" .\" Copyright (c) 1980, 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -114,7 +114,7 @@ writes undeleted messages back to this file. .It Fl u Ar user Is equivalent to: .Pp -.Dl mail -f /var/mail/user +.Dl $ mail -f /var/mail/user .Pp except that locking is done. .El diff --git a/usr.bin/mixerctl/mixerctl.1 b/usr.bin/mixerctl/mixerctl.1 index 6f88d0ae1b7..276560f46be 100644 --- a/usr.bin/mixerctl/mixerctl.1 +++ b/usr.bin/mixerctl/mixerctl.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mixerctl.1,v 1.13 2001/05/01 17:58:03 aaron Exp $ +.\" $OpenBSD: mixerctl.1,v 1.14 2002/11/14 02:57:28 deraadt Exp $ .\" $NetBSD: mixerctl.1,v 1.8 1998/05/09 12:41:16 augustss Exp $ .\" .\" Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -125,7 +125,7 @@ may either be an enumeration or a set. .Sh EXAMPLES The command .Pp -.Dl "mixerctl -a -v" +.Dl "$ mixerctl -a -v" .Pp can produce .Bd -literal diff --git a/usr.bin/printf/printf.1 b/usr.bin/printf/printf.1 index 52f5ed41907..53012f0747c 100644 --- a/usr.bin/printf/printf.1 +++ b/usr.bin/printf/printf.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: printf.1,v 1.13 2001/02/17 17:15:27 pjanzen Exp $ +.\" $OpenBSD: printf.1,v 1.14 2002/11/14 02:57:28 deraadt Exp $ .\" .\" Copyright (c) 1989, 1990 The Regents of the University of California. .\" All rights reserved. @@ -297,12 +297,12 @@ utility exits 0 on success or 1 on failure. .Sh EXAMPLES Convert a hexidecimal value to decimal and print it out: .Pp -.D1 Ic printf \&"%d\en\&" 0x20 +.D1 Ic $ printf \&"%d\en\&" 0x20 .Pp Print the decimal representation of the character 'a' (see .Xr ascii 7 ) : .Pp -.D1 Ic printf \&"%d\en\&" \e'a +.D1 Ic $ printf \&"%d\en\&" \e'a .Sh SEE ALSO .Xr echo 1 , .Xr printf 3 diff --git a/usr.bin/radioctl/radioctl.1 b/usr.bin/radioctl/radioctl.1 index 66010530ccc..bf50709f0af 100644 --- a/usr.bin/radioctl/radioctl.1 +++ b/usr.bin/radioctl/radioctl.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: radioctl.1,v 1.4 2001/12/06 10:14:32 mickey Exp $ +.\" $OpenBSD: radioctl.1,v 1.5 2002/11/14 02:57:28 deraadt Exp $ .\" .\" Copyright (c) 2001 Vladimir Popov .\" All rights reserved. @@ -128,7 +128,7 @@ and can be viewed using option .Sh EXAMPLES The command .Pp -.Dl "radioctl -a" +.Dl "$ radioctl -a" .Pp can produce .Bd -literal diff --git a/usr.bin/rpcinfo/rpcinfo.8 b/usr.bin/rpcinfo/rpcinfo.8 index bcb99e118aa..b4c1e522ebb 100644 --- a/usr.bin/rpcinfo/rpcinfo.8 +++ b/usr.bin/rpcinfo/rpcinfo.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rpcinfo.8,v 1.8 2000/11/09 17:52:34 aaron Exp $ +.\" $OpenBSD: rpcinfo.8,v 1.9 2002/11/14 02:57:28 deraadt Exp $ .\" from: @(#)rpcinfo.8c 2.2 88/08/03 4.0 RPCSRC; from 1.24 88/02/25 SMI .\" .Dd December 17, 1987 @@ -141,7 +141,7 @@ To show all of the .Tn RPC services registered on the local machine use: .Pp -.Dl example% rpcinfo -p +.Dl $ rpcinfo -p .Pp To show all of the .Tn RPC @@ -149,12 +149,12 @@ services registered on the machine named .Ar klaxon use: .Pp -.Dl example% rpcinfo -p klaxon +.Dl $ rpcinfo -p klaxon .Pp To show all machines on the local net that are running the Yellow Pages service use: .Pp -.Dl example% rpcinfo -b ypserv 'version' | uniq +.Dl $ rpcinfo -b ypserv 'version' | uniq .Pp where 'version' is the current Yellow Pages version obtained from the results of the @@ -165,7 +165,7 @@ To delete the registration for version 1 of the .Nm walld service use: .Pp -.Dl example% rpcinfo -d walld 1 +.Dl $ rpcinfo -d walld 1 .Sh SEE ALSO .Xr rpc 5 , .Xr portmap 8 diff --git a/usr.bin/rsh/rsh.1 b/usr.bin/rsh/rsh.1 index 2a3cc23ead0..2f5e76fbe82 100644 --- a/usr.bin/rsh/rsh.1 +++ b/usr.bin/rsh/rsh.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rsh.1,v 1.11 2002/05/06 22:50:03 millert Exp $ +.\" $OpenBSD: rsh.1,v 1.12 2002/11/14 02:57:28 deraadt Exp $ .\" .\" Copyright (c) 1983, 1990 The Regents of the University of California. .\" All rights reserved. @@ -126,7 +126,7 @@ Shell meta-characters which are not quoted are interpreted on local machine, while quoted meta-characters are interpreted on the remote machine. For example, the command .Pp -.Dl rsh otherhost cat remotefile >> localfile +.Dl $ rsh otherhost cat remotefile >> localfile .Pp appends the remote file .Ar remotefile @@ -134,7 +134,7 @@ to the local file .Ar localfile , while .Pp -.Dl rsh otherhost cat remotefile \&">>\&" other_remotefile +.Dl $ rsh otherhost cat remotefile \&">>\&" other_remotefile .Pp appends .Ar remotefile diff --git a/usr.bin/su/su.1 b/usr.bin/su/su.1 index 3dccf0ae649..7a80fc04a23 100644 --- a/usr.bin/su/su.1 +++ b/usr.bin/su/su.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: su.1,v 1.16 2002/10/16 01:06:32 millert Exp $ +.\" $OpenBSD: su.1,v 1.17 2002/11/14 02:57:28 deraadt Exp $ .\" .\" Copyright (c) 1988, 1990 The Regents of the University of California. .\" All rights reserved. @@ -218,22 +218,22 @@ prompt is set to to remind one of its awesome power. .Sh EXAMPLES .Bl -tag -width 5n -compact -.It Li "su bin -c makewhatis" +.It Li "$ su bin -c makewhatis" Runs the command .Li makewhatis as user .Li bin . You will be asked for bin's password unless your real UID is 0. .Pp -.It Li "su bin -c 'makewhatis /usr/local/man'" +.It Li "$ su bin -c 'makewhatis /usr/local/man'" Same as above, but the target command consists of more than a single word. .Pp -.It Li "su -l foo" +.It Li "$ su -l foo" Pretend a login for user .Li foo . .Pp -.It Li "su -a skey -l foo" +.It Li "$ su -a skey -l foo" Same as above, but use S/Key for authentication. .El .Sh ENVIRONMENT diff --git a/usr.bin/talk/talk.1 b/usr.bin/talk/talk.1 index d3afe0b1659..7eec817dfa5 100644 --- a/usr.bin/talk/talk.1 +++ b/usr.bin/talk/talk.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: talk.1,v 1.14 2002/06/20 19:25:55 millert Exp $ +.\" $OpenBSD: talk.1,v 1.15 2002/11/14 02:57:28 deraadt Exp $ .\" $NetBSD: talk.1,v 1.3 1994/12/09 02:14:23 jtc Exp $ .\" .\" Copyright (c) 1983, 1990, 1993 @@ -93,7 +93,7 @@ talk: respond with: talk your_name@your_machine to the user you wish to talk to. At this point, the recipient of the message should reply by typing .Pp -.Dl talk \ your_name@your_machine +.Dl $ talk \ your_name@your_machine .Pp It doesn't matter from which machine the recipient replies, as long as the login name is the same. diff --git a/usr.bin/tr/tr.1 b/usr.bin/tr/tr.1 index 238a7d76364..ba840e6226f 100644 --- a/usr.bin/tr/tr.1 +++ b/usr.bin/tr/tr.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tr.1,v 1.6 2000/03/11 21:40:05 aaron Exp $ +.\" $OpenBSD: tr.1,v 1.7 2002/11/14 02:57:28 deraadt Exp $ .\" $NetBSD: tr.1,v 1.5 1994/12/07 08:35:13 jtc Exp $ .\" .\" Copyright (c) 1991, 1993 @@ -254,15 +254,15 @@ The following examples are shown as given to the shell: Create a list of the words in file1, one per line, where a word is taken to be a maximal string of letters. .Pp -.D1 Li "tr -cs \*q[:alpha:]\*q \*q\en\*q < file1" +.D1 Li "$ tr -cs \*q[:alpha:]\*q \*q\en\*q < file1" .Pp Translate the contents of file1 to upper-case. .Pp -.D1 Li "tr \*q[:lower:]\*q \*q[:upper:]\*q < file1" +.D1 Li "$ tr \*q[:lower:]\*q \*q[:upper:]\*q < file1" .Pp Strip out non-printable characters from file1. .Pp -.D1 Li "tr -cd \*q[:print:]\*q < file1" +.D1 Li "$ tr -cd \*q[:print:]\*q < file1" .Sh SEE ALSO .Xr sed 1 .Sh COMPATIBILITY diff --git a/usr.bin/usbhidaction/usbhidaction.1 b/usr.bin/usbhidaction/usbhidaction.1 index 9f075b80b13..4e2f2546117 100644 --- a/usr.bin/usbhidaction/usbhidaction.1 +++ b/usr.bin/usbhidaction/usbhidaction.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: usbhidaction.1,v 1.1 2002/05/10 00:09:17 nate Exp $ +.\" $OpenBSD: usbhidaction.1,v 1.2 2002/11/14 02:57:28 deraadt Exp $ .\" $NetBSD: usbhidaction.1,v 1.6 2002/01/18 14:38:59 augustss Exp $ .\" .\" Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -123,7 +123,7 @@ Consumer:Consumer_Control.Consumer:Channel_Top.Microsoft:Base_Down 1 .Pp A sample invocation using this configuration would be .Bd -literal -offset indent -usbhidaction -f /dev/uhid1 -c conf /dev/mixer1 +$ usbhidaction -f /dev/uhid1 -c conf /dev/mixer1 .Ed .Sh SEE ALSO .Xr usbhidctl 1 , diff --git a/usr.bin/usbhidctl/usbhidctl.1 b/usr.bin/usbhidctl/usbhidctl.1 index 87f92e51a1a..68ee62774f3 100644 --- a/usr.bin/usbhidctl/usbhidctl.1 +++ b/usr.bin/usbhidctl/usbhidctl.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: usbhidctl.1,v 1.4 2002/05/10 00:09:17 nate Exp $ +.\" $OpenBSD: usbhidctl.1,v 1.5 2002/11/14 02:57:28 deraadt Exp $ .\" $NetBSD: usbhidctl.1,v 1.14 2001/12/28 17:49:32 augustss Exp $ .\" .\" Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -161,7 +161,7 @@ An item can generally be named by omitting one or more of the page names. For example the .Qq button 2 item would usually just be referred to on the command line as: -.Dl usbhidctl -f /dev/mouse Mouse.Pointer.Button_2 +.Dl $ usbhidctl -f /dev/mouse Mouse.Pointer.Button_2 .Pp Items can also be named by referring to parts of the item name with the numeric representation of the native HID usage identifiers. This is most @@ -173,7 +173,7 @@ page is 1, and the usage identifier for the usage is 2, so the following can be used to refer to the .Qq button 2 item: -.Dl usbhidctl -f /dev/mouse 1:Mouse.1:Pointer.Button:2 +.Dl $ usbhidctl -f /dev/mouse 1:Mouse.1:Pointer.Button:2 .Pp Devices with human interface outputs can be manipulated with the .Fl w @@ -181,7 +181,7 @@ option. For example, some USB mice have a Light Emitting Diode under software control as usage 2 under page 0xffff, in the .Qq Mouse collection. The following can be used to switch this LED off: -.Dl usbhidctl -f /dev/mouse -w Mouse.0xffff:2=0 +.Dl $ usbhidctl -f /dev/mouse -w Mouse.0xffff:2=0 .Sh SEE ALSO .Xr usbhidaction 1 , .Xr usbhid 3 , diff --git a/usr.bin/uuencode/uuencode.1 b/usr.bin/uuencode/uuencode.1 index eb4bd765380..7f7acf64adf 100644 --- a/usr.bin/uuencode/uuencode.1 +++ b/usr.bin/uuencode/uuencode.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: uuencode.1,v 1.9 2002/11/09 02:15:55 fgsch Exp $ +.\" $OpenBSD: uuencode.1,v 1.10 2002/11/14 02:57:28 deraadt Exp $ .\" $NetBSD: uuencode.1,v 1.4 1994/11/17 07:39:42 jtc Exp $ .\" .\" Copyright (c) 1980, 1990, 1993 @@ -94,7 +94,7 @@ will be created which may then be uncompressed and extracted into the original tree. .Pp .Bd -literal -offset indent -compact -$ tar cf \- src_tree \&| compress \&| +$ tar cf \- src_tree \&| compress \&| \\ uuencode src_tree.tar.Z \&| mail sys1!sys2!user .Ed .Pp |