aboutsummaryrefslogtreecommitdiffstats
path: root/test/sortfor.awk
blob: 611eca64d5695cb374d999953801d6ed78fd18df (plain)
1
2
3
4
5
6
7
8
9
{ a[$0]++ }
END {
	PROCINFO["sorted_in"] = "ascending"
	for (i in a)
		print i
	PROCINFO["sorted_in"] = "descending"
	for (i in a)
		print i
}