summaryrefslogtreecommitdiffstats
path: root/contrib/awk/test/leadnl.awk
blob: 0b7d0a97712961bee6e7fe87bd0bbc2e915c5d83 (plain)
1
2
3
4
5
6
7
8
9
10
BEGIN {
    RS = ""; FS = "\n"
}

{
    print "Name is: ", $1
    print "Address is: ", $2
    print "City and State are: ", $3
    print ""
}
OpenPOWER on IntegriCloud