summaryrefslogtreecommitdiff
path: root/test/widesub.awk
blob: 768e715c251292472698be6f6dffa6859d922a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BEGIN {
	str = "type=\"directory\" version=\"1.0\""
	#print "BEGIN:", str

	while (str) {
		sub(/^[^=]*/, "", str);
		s = substr(str, 2)
		print s
		sub(/^="[^"]*"/, "", str)
		sub(/^[ \t]*/, "", str)
	}
}