|
Revision 1043, 0.5 kB
(checked in by smidl, 15 years ago)
|
|
Filter of BDM movet to bdmtoolbox
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/usr/bin/perl -w |
|---|
| 2 | |
|---|
| 3 | use strict; |
|---|
| 4 | use warnings; |
|---|
| 5 | |
|---|
| 6 | use English qw( -no_match_vars ); |
|---|
| 7 | use Carp; |
|---|
| 8 | |
|---|
| 9 | while (<>) { |
|---|
| 10 | my $filename = $_; |
|---|
| 11 | $filename =~ s/ *(.*?) */$1/; #trim |
|---|
| 12 | $filename =~ s/bdm::/classbdm_1_1/; |
|---|
| 13 | $filename =~ s/$/.html/; |
|---|
| 14 | print "../../../../library/doc/html/" . $filename; |
|---|
| 15 | } |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | __END__ |
|---|
| 19 | |
|---|
| 20 | =head1 NAME |
|---|
| 21 | |
|---|
| 22 | filename.pl -- one line description |
|---|
| 23 | |
|---|
| 24 | =head1 USAGE |
|---|
| 25 | |
|---|
| 26 | ./filename.pl [options] |
|---|
| 27 | |
|---|
| 28 | Options: |
|---|
| 29 | |
|---|
| 30 | =over |
|---|
| 31 | |
|---|
| 32 | =item C<--option> |
|---|
| 33 | |
|---|
| 34 | Option description |
|---|
| 35 | |
|---|
| 36 | =back |
|---|
| 37 | |
|---|
| 38 | =head1 DESCRIPTION |
|---|
| 39 | |
|---|
| 40 | =head1 DEPENDENCIES |
|---|
| 41 | |
|---|
| 42 | =head1 AUTHOR |
|---|
| 43 | |
|---|
| 44 | Miroslav Tynovsky |
|---|
| 45 | |
|---|
| 46 | =cut |
|---|
| 47 | |
|---|