From: CSRG Date: Thu, 27 Sep 1979 12:49:08 +0000 (-0800) Subject: BSD 4_4 development X-Git-Tag: BSD-4_4~3999 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/f8f5383d1065e9ac0337fad7b0c5579798d18dcf?ds=inline BSD 4_4 development Work on file usr/src/old/awk/test/t.split9 Synthesized-from: CSRG/cd3/4.4 --- diff --git a/usr/src/old/awk/test/t.split9 b/usr/src/old/awk/test/t.split9 new file mode 100644 index 0000000000..bc62ac859f --- /dev/null +++ b/usr/src/old/awk/test/t.split9 @@ -0,0 +1,8 @@ +{ + n = split ($0, x, FS) + if (n != NF) + print "botch at ", NR, n, NF + for (i=1; i<=n; i++) + if ($i != x[i]) + print "diff at ", i, x[i], $i +}