blob: 89c56eae5273dabbe288f741515c2f4de1abe4d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# @(#)range.awk 10.1 (Sleepycat) 11/1/98
#
# Print out a range of the log
/^\[/{
l = length($1) - 1;
i = index($1, "]");
file = substr($1, 2, i - 2);
file += 0;
start = i + 2;
offset = substr($1, start, l - start + 1);
i = index(offset, "]");
offset = substr($1, start, i - 1);
offset += 0;
if ((file == START_FILE && offset >= START_OFFSET || file > START_FILE)\
&& (file < END_FILE || (file == END_FILE && offset < END_OFFSET)))
printme = 1
else if (file == END_FILE && offset > END_OFFSET || file > END_FILE)
exit
else
printme = 0
}
{
if (printme == 1)
print $0
}
|