From 0e5a5418bc434fd7bb69a3ec97fd12c68ebebf92 Mon Sep 17 00:00:00 2001 From: John Terpstra Date: Tue, 28 Jun 2005 01:50:18 +0000 Subject: r7976: Adding debugging info. (This used to be commit 97ee7c970c287737396f135336c56c945f639d85) --- examples/debugging/solaris-oops.sh | 52 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 examples/debugging/solaris-oops.sh (limited to 'examples/debugging/solaris-oops.sh') diff --git a/examples/debugging/solaris-oops.sh b/examples/debugging/solaris-oops.sh new file mode 100644 index 0000000000..78c72c9508 --- /dev/null +++ b/examples/debugging/solaris-oops.sh @@ -0,0 +1,52 @@ +#!/bin/sh +# +# oops -- capture supporting information after a failure +# +ProgName=`basename $0` + +main() { + pid=$1 + + if [ $# -lt 1 ]; then + say "$ProgName error: you must supply a pid" + say "Usage: $0 pid" + exit 1 + fi + cat <&2 +} + +main "$@" -- cgit