Support extracting /log to /out.
authorjkratoch <>
Mon, 8 Jun 2009 23:33:28 +0000 (23:33 +0000)
committerjkratoch <>
Mon, 8 Jun 2009 23:33:28 +0000 (23:33 +0000)
bin/gdbunpack

index fa94885..ea60ac2 100755 (executable)
@@ -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