From ab1c09bce5c096fa34f684f9ac1ebd918e3f974b Mon Sep 17 00:00:00 2001 From: jkratoch <> Date: Mon, 8 Jun 2009 23:33:28 +0000 Subject: [PATCH] Support extracting /log to /out. --- bin/gdbunpack | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bin/gdbunpack b/bin/gdbunpack index fa94885..ea60ac2 100755 --- a/bin/gdbunpack +++ b/bin/gdbunpack @@ -18,6 +18,12 @@ if [ -z "$args" ];then fi for log in $args;do base="${log%.log}" + if [ "$base" = "$log" ];then + base="${log%/log}" + if [ "$base" != "$log" ];then + base="$base/out" + fi + fi if [ "$base" = "$log" -o "$log" != "${log%/gdb.log}" -o "$log" = "gdb.log" ];then echo >&2 "file has no .log suffix or is gdb.log: $log" continue -- 1.8.3.1