1$ rm -f x
2$ cp x.conf x
3
4$ $VALGRIND ../src/confctl -a x
5> 1.2.3.4.5=meh
6> 1.2.useless=
7> 1.x=
8> 1.2.3.4.5.foo=bar
9> 1.2.3.4.5.6.baz=
10
11$ $VALGRIND ../src/confctl -x 1.2.3.4.5 -x 1.2.useless x
12$ cat x
13> 1 {
14> 	# Comment for 2.
15> 	2 {
16> 		3 {
17> 			4 {
18> 			}
19> 		}
20> 	}
21>
22> 	x
23>
24> 	2 {
25> 		3 {
26> 			4 {
27> 			}
28> 		}
29> 	}
30> }
31>
32> 1 {
33> 	2 {
34> 		3 {
35> 			# comment for 4
36> 			4 {
37>
38> 				# comment after 5
39> 			}
40> 		}
41> 	}
42> }
43
44$ rm -f x
45