aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/gawk/out.awk
blob: 1b8178a1b17703c1d2f6db2797885dd0a742f79a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"
}