Home
Manpages
About
(root)/
gawk-5.2.2/
test/
splitwht.awk
BEGIN { str = "a b\t\tc d" n = split(str, a, " ") print n m = split(str, b, / /) print m }