Files
rk35xx-android14/external/one-true-awk/testdir/t.null0
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

16 lines
397 B
Plaintext

BEGIN { FS = ":" }
{ if (a) print "a", a
if (b == 0) print "b", b
if ( c == "0") print "c", c
if (d == "") print "d", d
if (e == 1-1) print "e", e
}
$1 == 0 {print "$1 = 0"}
$1 == "0" {print "$1 = quoted 0"}
$1 == "" {print "$1 = null string"}
$5 == 0 {print "$5 = 0"}
$5 == "0" {print "$5 = quoted 0"}
$5 == "" {print "$5 = null string"}
$1 == $3 {print "$1 = $3"}
$5 == $6 {print "$5 = $6"}