summaryrefslogtreecommitdiff
path: root/lang/python/modules.awk
blob: 5e01a9d1dda861075391e31b572842ec1c12aa7e (plain)
1
2
3
4
5
6
7
$0 == "*static*" {static = 1; next}
$0 == "*shared*" {static = 0; next}

NF && !/^#/ && static {
	for (i = 2; i <= NF; ++i)
		print $i
}