summaryrefslogtreecommitdiff
path: root/fml/utils/bin/show_modules.sh
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-03-15 08:14:25 +0000
committerfukachan <fukachan>2001-03-15 08:14:25 +0000
commit7a90b3bda2a47e64294ff3a459e8aca39695007c (patch)
treeb464349ddc09b699222f43e301107131ff0617bc /fml/utils/bin/show_modules.sh
parenta0ed8f30416e4026f1a196bc09481067a297a230 (diff)
downloadfml8-snap-20010315.tar.gz
fml8-snap-20010315.tar.bz2
fml8-snap-20010315.zip
move bin/* to utils/bin/ since they are not-installed-programssnap-20010315
Diffstat (limited to 'fml/utils/bin/show_modules.sh')
-rwxr-xr-xfml/utils/bin/show_modules.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/fml/utils/bin/show_modules.sh b/fml/utils/bin/show_modules.sh
new file mode 100755
index 00000000..b9d036e7
--- /dev/null
+++ b/fml/utils/bin/show_modules.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+#
+# $Id$
+#
+
+for x in libexec/[a-z]* FML/*pm
+do
+ sed '/=head1/,/=cut/d' $x |less
+done
+
+exit 0