ubuntu-buildroot/output/build/host-gawk-5.2.0/test/fpat2.awk

12 lines
89 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
BEGIN {
FPAT = " "
$0 = ""
print NF
$0 = "abc"
print NF
$0 = "a b c"
print NF
}