Files
rk35xx-android14/external/one-true-awk/testdir/t.intest2
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

17 lines
237 B
Plaintext

{
line = substr($0, index($0, " "))
print line
n = split(line, x)
x[$0, $1] = $0
print x[$0, $1]
print "<<<"
for (i in x) print i, x[i]
print ">>>"
if (($0,$1) in x)
print "yes"
if ($1 in x)
print "yes"
else
print "no"
}