Blame test/leadnl.awk

Packit 575503
BEGIN {
Packit 575503
    RS = ""; FS = "\n"
Packit 575503
}
Packit 575503
Packit 575503
{
Packit 575503
    print "Name is: ", $1
Packit 575503
    print "Address is: ", $2
Packit 575503
    print "City and State are: ", $3
Packit 575503
    print ""
Packit 575503
}