aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/gawk/in.awk
blob: 3d1720a14dc78d46da518c7630e2e64ba88babb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
BEGIN {

print "Users and their corresponding home"

print " UserName \t HomePath"

print "___________ \t __________"

FS=":"

}

{

    if ($2 == "foo") {
        print $2
        }
print $1 "  \t  " $6

}

END {

print "The end"

}