diff options
author | rwatson <rwatson@FreeBSD.org> | 2007-12-26 12:20:19 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2007-12-26 12:20:19 +0000 |
commit | a347133c7f2f977d29d7f9e9880f0eadb89ee529 (patch) | |
tree | f012088f60b698c715b428c794b3eab3c293aff6 /sbin/ddb/ddb.8 | |
parent | ce2b35c358cce8654c16f44d39cf6ad301b53eac (diff) | |
download | FreeBSD-src-a347133c7f2f977d29d7f9e9880f0eadb89ee529.zip FreeBSD-src-a347133c7f2f977d29d7f9e9880f0eadb89ee529.tar.gz |
Minor formatting tweaks.
Point at ddb(4) and textdump(4) man pages for more script examples.
MFC after: 3 months
Diffstat (limited to 'sbin/ddb/ddb.8')
-rw-r--r-- | sbin/ddb/ddb.8 | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/sbin/ddb/ddb.8 b/sbin/ddb/ddb.8 index 5d20d87..b233143 100644 --- a/sbin/ddb/ddb.8 +++ b/sbin/ddb/ddb.8 @@ -79,17 +79,24 @@ Delete the script named The following example defines a script that will execute when the kernel debugger is entered as a result of a break signal: .Bd -literal -offset indent -ddb script kdb.enter.break="show pcpu;bt" +ddb script kdb.enter.break="show pcpu; bt" .Ed .Pp The following example will delete the script: .Bd -literal -offset indent ddb unscript kdb.enter.break .Ed +.Pp +For further examples, see the +.Xr ddb 4 +and +.Xr textdump 4 +man pages. .Sh EXIT STATUS .Ex -std .Sh SEE ALSO -.Xr DDB 4 , +.Xr ddb 4 , +.Xr textdump 4 , .Xr sysctl 8 .Sh HISTORY .Nm @@ -101,6 +108,6 @@ first appeared in Ideally, .Nm would not exist, as all pertinent aspects of -.Xr DDB 4 +.Xr ddb 4 could be configured directly via .Xr sysctl 8 . |