25 lines
427 B
Bash
25 lines
427 B
Bash
|
#!/bin/sh
|
||
|
################################################################################
|
||
|
#
|
||
|
# lockgraphs.sh by Michele Dallachiesa -- 2008-05-07 -- v0.1
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
sysctl debug.witness.graphs | awk '
|
||
|
BEGIN {
|
||
|
print "digraph lockgraphs {"
|
||
|
}
|
||
|
|
||
|
NR > 1 && $0 ~ /"Giant"/ {
|
||
|
gsub(","," -> ");
|
||
|
print $0 ";"
|
||
|
}
|
||
|
|
||
|
END {
|
||
|
print "}"
|
||
|
}'
|
||
|
|
||
|
#eof
|