xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/leadnl.awk (revision 1bff1300cebf1ea8e11ce928b10e208097e67f24)
1BEGIN {
2    RS = ""; FS = "\n"
3}
4
5{
6    print "Name is: ", $1
7    print "Address is: ", $2
8    print "City and State are: ", $3
9    print ""
10}
11