File: compare_sortit

package info (click to toggle)
tkrev 9.6.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,972 kB
  • sloc: tcl: 30,582; sh: 2,296; makefile: 22; csh: 14
file content (12 lines) | stat: -rwxr-xr-x 241 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/csh

# This is for comparing the "sort_it_all_out" lines in two debug
# trace logs.

echo "comparing tkrev trace log files $1 and $2"

awk -F':' '/sort_it/ {print $7}' $1 > T1
awk -F':' '/sort_it/ {print $7}' $2 > T2

tkdiff T1 T2 &