executor/util/canon

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$$