Lines Matching refs:CURDIR

7 	grep t.s ${.CURDIR}/in | diff - ${.CURDIR}/t1.out
10 grep -w separated ${.CURDIR}/in | diff - ${.CURDIR}/t1.out
13 grep ^Beginning ${.CURDIR}/in | diff - ${.CURDIR}/t3.out
16 grep -i end$$ ${.CURDIR}/in | diff - ${.CURDIR}/t4.out
19 egrep '\?|\*$$' ${.CURDIR}/in | diff - ${.CURDIR}/t5.out
22 grep -v [l] ${.CURDIR}/in | diff - ${.CURDIR}/t6.out
25 grep -x line ${.CURDIR}/in | diff - ${.CURDIR}/t7.out
28 fgrep line. ${.CURDIR}/in | diff - /dev/null
31 grep non.existent ${.CURDIR}/in | diff - /dev/null
37 grep -C1 examples ${.CURDIR}/in | diff - ${.CURDIR}/t11.out
40 egrep -f ${.CURDIR}/t1.out ${.CURDIR}/in | diff - ${.CURDIR}/t1.out
43 grep 'abcd. abcd.' ${.CURDIR}/t13.in | diff - ${.CURDIR}/t13.out
46 test X`grep -w -l u_int ${.CURDIR}/t14.in` = X${.CURDIR}/t14.in
49 grep -w tu ${.CURDIR}/t15.in | diff - ${.CURDIR}/t15.out
52 grep -w to ${.CURDIR}/t15.in | diff - ${.CURDIR}/t15.out
55 grep -w '^foo' ${.CURDIR}/t17.in | diff - ${.CURDIR}/t17.out
58 grep -w '^foo$$' ${.CURDIR}/t17.in | diff - ${.CURDIR}/t17.out
61 grep -w 'a.' ${.CURDIR}/t19.in | diff - ${.CURDIR}/t19.out
62 fgrep -w -e 'aa' -e 'a_' ${.CURDIR}/t19.in | diff - ${.CURDIR}/t19.out
83 grep -l D.e ${.CURDIR}/in | diff - ${.CURDIR}/t21.out
84 egrep -l D.e ${.CURDIR}/in | diff - ${.CURDIR}/t21.out
85 grep -l '.*D.e' ${.CURDIR}/in | diff - ${.CURDIR}/t21.out
86 egrep -l '.*D.e' ${.CURDIR}/in | diff - ${.CURDIR}/t21.out
89 grep -l 'a.*b' ${.CURDIR}/t22.in
92 egrep -w 'word1|word2|word3' ${.CURDIR}/t23.in
95 grep -e '' < ${.CURDIR}/in | diff - ${.CURDIR}/in
96 grep -x -e '' < ${.CURDIR}/in | diff - /dev/null
97 grep -f /dev/null < ${.CURDIR}/in | diff - /dev/null
100 grep -o [ab] ${.CURDIR}/t25.in | diff - ${.CURDIR}/t25.out
103 echo 'aaab' | grep -o 'a*' | head -n 10 | diff - ${.CURDIR}/t26.out
106 grep -A1 'C' ${.CURDIR}/t27.in | diff - ${.CURDIR}/t27a.out
107 grep -B1 'C' ${.CURDIR}/t27.in | diff - ${.CURDIR}/t27b.out
108 grep -C1 'C' ${.CURDIR}/t27.in | diff - ${.CURDIR}/t27c.out
111 grep -m 0 -o x.y ${.CURDIR}/t28.in | diff - /dev/null
112 grep -m 1 -o x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_1.out
113 grep -m 2 -o x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_2.out
114 grep -m 3 -o x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_3.out
115 grep -m 4 -o x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_4.out
116 grep -m 5 -o x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_4.out
117 grep -m 6 -o x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_4.out
118 grep -m 7 -o x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_4.out
119 grep -m 8 -o x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_4.out
120 grep -m 0 x.y ${.CURDIR}/t28.in | diff - /dev/null
121 grep -m 1 x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_5.out
122 grep -m 2 x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_6.out
123 grep -m 3 x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_7.out
124 grep -m 4 x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_8.out
125 grep -m 5 x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_8.out
126 grep -m 6 x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_8.out
127 grep -m 7 x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_8.out
128 grep -m 8 x.y ${.CURDIR}/t28.in | diff - ${.CURDIR}/t28_8.out