Last change
on this file since 3627 was 2595, checked in by bird, 13 years ago |
gnu grep version 2.12 (grep-2.12.tar.xz, md5sum=8d2f0346d08b13c18afb81f0e8aa1e2f)
|
File size:
476 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | # Show how -m1 works with -A N when a 2nd match is < N lines after the first
|
---|
3 | . "${srcdir=.}/init.sh"; path_prepend_ ../src
|
---|
4 |
|
---|
5 | cat <<EOF > in || framework_failure_
|
---|
6 | needle
|
---|
7 | 1st line of context
|
---|
8 | 2nd line of context
|
---|
9 | 3rd line of context
|
---|
10 | another needle
|
---|
11 | 5th line of context relative to first match
|
---|
12 | 6th line...
|
---|
13 | EOF
|
---|
14 |
|
---|
15 | sed 4q in > exp || framework_failure_
|
---|
16 |
|
---|
17 | fail=0
|
---|
18 | grep -m1 -A5 needle in > out 2>err || fail=1
|
---|
19 |
|
---|
20 | compare exp out || fail=1
|
---|
21 | compare /dev/null err || fail=1
|
---|
22 |
|
---|
23 | Exit $fail
|
---|
Note:
See
TracBrowser
for help on using the repository browser.