mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
992f1e6b8f
add the 5 missing chapters from the HOWTO
and add jht's Samba by Example book.
(This used to be commit 9fb5bcb93e
)
9 lines
210 B
Perl
Executable File
9 lines
210 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
while(<STDIN>) {
|
|
if(/^$/) { }
|
|
elsif(/^([ \t]*)#(.*)/) { print "#$2\n"; }
|
|
elsif(/^([ \t]*)(.*) = (.*)$/) { print "\t$2 = $3\n"; }
|
|
elsif(/^([ \t]*)\[(.*)\]([ \t]*)$/) { print "\n[$2]\n"; }
|
|
}
|