torture: convert torture_comment() -> torture_result() so we can knownfail flapping...
[Samba/wip.git] / docs-xml / scripts / indent-smb.conf.pl
blobc4c87a151126d133e40b20bf78f7694f93ae6ff3
1 #!/usr/bin/perl
3 while(<STDIN>) {
4 if(/^$/) { }
5 elsif(/^([ \t]*)#(.*)/) { print "#$2\n"; }
6 elsif(/^([ \t]*)(.*) = (.*)$/) { print "\t$2 = $3\n"; }
7 elsif(/^([ \t]*)\[(.*)\]([ \t]*)$/) { print "\n[$2]\n"; }