From b0ed3d7cc08ed715ccea67c9d9061f4074e3b176 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 5 Feb 2006 22:10:40 +0000 Subject: Rob Sullivan writes: Here's a patch to autogenerate the list of applets in the Busybox documentation --- docs/autodocifier.pl | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'docs/autodocifier.pl') diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl index eee67cf09..a122b0b06 100755 --- a/docs/autodocifier.pl +++ b/docs/autodocifier.pl @@ -150,7 +150,21 @@ foreach (@ARGV) { # generate structured documentation my $generator = \&pod_for_usage; -foreach my $applet (sort keys %docs) { + +my @names = sort keys %docs; +print "\t[, [[, "; +for (my $i = 0; $i < $#names; $i++) { + if (($i + 2) % 8 == 0) { + print "\n\t"; + } + print "$names[$i], "; +} +print $names[-1]; + +print "\n\n=head1 COMMAND DESCRIPTIONS\n"; +print "\n=over 4\n\n"; + +foreach my $applet (@names) { print $generator->($applet, $docs{$applet}); } -- cgit v1.2.3