Lines Matching refs:foo2
199 b' foo0 >foo1 2>foo2
200 grep 'newline in string' foo2 >/dev/null || echo 'BAD: T.errmsg newline in string'
202 $awk -safe 'BEGIN{"date" | getline}' >foo 2>foo2
203 grep 'cmd | getline is unsafe' foo2 >/dev/null || echo 'BAD: T.errmsg cmd|getline unsafe'
205 $awk -safe 'BEGIN{print >"foo"}' >foo 2>foo2
206 grep 'print > is unsafe' foo2 >/dev/null || echo 'BAD: T.errmsg print > unsafe'
208 $awk -safe 'BEGIN{print >> "foo"}' >foo 2>foo2
209 grep 'print >> is unsafe' foo2 >/dev/null || echo 'BAD: T.errmsg print >> unsafe'
211 $awk -safe 'BEGIN{print | "foo"}' >foo 2>foo2
212 grep 'print | is unsafe' foo2 >/dev/null || echo 'BAD: T.errmsg print | unsafe'
214 $awk -safe 'BEGIN {system("date")}' >foo 2>foo2
215 grep 'system is unsafe' foo2 >/dev/null || echo 'BAD: T.errmsg system unsafe'