diff options
author | ru <ru@FreeBSD.org> | 2005-01-15 12:28:01 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-01-15 12:28:01 +0000 |
commit | d26afd541df23fb12a7967a6327bd1eafc184a85 (patch) | |
tree | 67be4a2793520ab24bb84fe954e5f09e1493d521 /usr.sbin | |
parent | c448d3af70f9c62a62a6f78fa06a919f11e33f5c (diff) | |
download | FreeBSD-src-d26afd541df23fb12a7967a6327bd1eafc184a85.zip FreeBSD-src-d26afd541df23fb12a7967a6327bd1eafc184a85.tar.gz |
Eliminate macro calls inside literal displays.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/mrouted/mrinfo.8 | 2 | ||||
-rw-r--r-- | usr.sbin/rtprio/rtprio.1 | 39 | ||||
-rw-r--r-- | usr.sbin/zic/zic.8 | 11 |
3 files changed, 16 insertions, 36 deletions
diff --git a/usr.sbin/mrouted/mrinfo.8 b/usr.sbin/mrouted/mrinfo.8 index bd9c61f..94f8f0a1 100644 --- a/usr.sbin/mrouted/mrinfo.8 +++ b/usr.sbin/mrouted/mrinfo.8 @@ -64,7 +64,7 @@ Default timeout is 4 seconds. .El .Sh SAMPLE OUTPUT .Bd -literal -.Nm mrinfo Ar mbone.phony.dom.net +$ mrinfo mbone.phony.dom.net 127.148.176.10 (mbone.phony.dom.net) [version 3.3]: 127.148.176.10 -> 0.0.0.0 (?) [1/1/querier] 127.148.176.10 -> 127.0.8.4 (mbone2.phony.dom.net) [1/45/tunnel] diff --git a/usr.sbin/rtprio/rtprio.1 b/usr.sbin/rtprio/rtprio.1 index a8986fb..a694935 100644 --- a/usr.sbin/rtprio/rtprio.1 +++ b/usr.sbin/rtprio/rtprio.1 @@ -122,51 +122,32 @@ In all other cases, exits 0 on success, and 1 for all other errors. .Sh EXAMPLES To see which realtime priority the current process is at: -.Bd -literal -offset indent -compact -.Sy "rtprio" -.Ed +.Dl rtprio .Pp -To see which realtime priority of process -.Em 1423 : -.Bd -literal -offset indent -compact -.Sy "rtprio 1423" -.Ed +To see which realtime priority of process 1423: +.Dl "rtprio 1423" .Pp To run .Xr cron 8 at the lowest realtime priority: -.Bd -literal -offset indent -compact -.Sy "rtprio 31 cron" -.Ed +.Dl "rtprio 31 cron" .Pp -To change the realtime priority of process -.Em 1423 -to -.Em 16 : -.Bd -literal -offset indent -compact -.Sy "rtprio 16 -1423" -.Ed +To change the realtime priority of process 1423 to 16: +.Dl "rtprio 16 -1423" .Pp To run .Xr tcpdump 1 without realtime priority: -.Bd -literal -offset indent -compact -.Sy "rtprio -t tcpdump" -.Ed +.Dl "rtprio -t tcpdump" .Pp -To change the realtime priority of process -.Em 1423 +To change the realtime priority of process 1423 to .Dv RTP_PRIO_NORMAL (non-realtime/normal priority): -.Bd -literal -offset indent -compact -.Sy "rtprio -t -1423" -.Ed +.Dl "rtprio -t -1423" .Pp To make depend while not disturbing other machine usage: -.Bd -literal -offset indent -compact -.Sy "idprio 31 make depend" -.Ed +.Dl "idprio 31 make depend" .Sh SEE ALSO .Xr nice 1 , .Xr ps 1 , diff --git a/usr.sbin/zic/zic.8 b/usr.sbin/zic/zic.8 index aa58a56..da25397 100644 --- a/usr.sbin/zic/zic.8 +++ b/usr.sbin/zic/zic.8 @@ -62,9 +62,9 @@ as local time. The .Nm utility will act as if the input contained a link line of the form -.Bd -literal -offset indent -.No "Link timezone localtime -.Ed +.Pp +.D1 No "Link timezone localtime" +.Pp (Note that this action has no effect on .Fx , since the local time zone is specified in @@ -85,9 +85,8 @@ time zone environment variables. The .Nm utility will act as if the input contained a link line of the form -.Bd -literal -offset indent -.No "Link timezone posixrules -.Ed +.Pp +.D1 No "Link timezone posixrules" .It Fl u Ar user After creating each output file, change its owner to .Ar user |