summaryrefslogtreecommitdiff
path: root/fml/utils/bin/show_modules.sh
blob: 47d255e57eddfc825ac2ffb822ee486889c11504 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# $FML$
#

for x in libexec/[a-z]* FML/*pm
do
	sed '/=head1/,/=cut/d' $x |less
done

exit 0