Support extracting /log to /out.
[nethome.git] / 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