diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2007-12-26 12:20:19 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2007-12-26 12:20:19 +0000 |
commit | 9f583488011a4314195de8dfd1d61bdc1d0c2431 (patch) | |
tree | f012088f60b698c715b428c794b3eab3c293aff6 /sbin | |
parent | f5ccc06760b569ab35a91d1edc8b90d425db26a9 (diff) | |
download | src-9f583488011a4314195de8dfd1d61bdc1d0c2431.tar.gz src-9f583488011a4314195de8dfd1d61bdc1d0c2431.zip |
Minor formatting tweaks.
Point at ddb(4) and textdump(4) man pages for more script examples.
MFC after: 3 months
Notes
Notes:
svn path=/head/; revision=174925
Diffstat (limited to 'sbin')
-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 5d20d874582b..b23314339fa7 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 . |