Fix indentation-adding artifact
[khome.git] / list
1 #! /usr/bin/awk -f
2
3 ! /^\#/ && ! /^$/ {
4 xs[$1]++
5 }
6
7 END {
8 for (x in xs) {
9 printf("%s%s", sep, x)
10 sep = " "
11 }
12 }
This page took 0.061927 seconds and 5 git commands to generate.