mirror of
https://github.com/ctm/executor.git
synced 2024-11-23 20:32:28 +00:00
7 lines
186 B
Bash
Executable File
7 lines
186 B
Bash
Executable File
#! /bin/bash
|
|
root="$1"
|
|
rm -f /tmp/t$$
|
|
awk '{print $1, $2}' "$root"/src/trapinfo > /tmp/t$$
|
|
awk -f "$root"/util/canon.awk < debugtable | sort | join -a1 - /tmp/t$$ | sort +1n
|
|
rm /tmp/t$$
|