line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#!perl |
2
|
|
|
|
|
|
|
package File::Replace::Fancy; |
3
|
1
|
|
|
1
|
|
143690
|
use warnings; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
35
|
|
4
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
19
|
|
5
|
1
|
|
|
1
|
|
416
|
use File::Replace::SingleHandle (); |
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
22
|
|
6
|
1
|
|
|
1
|
|
416
|
use File::Replace::DualHandle (); |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
30
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 Name |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
File::Replace::Fancy - Perl extension that extends the File::Replace module |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 Description |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
**This is a stub module.** You don't need to C |
15
|
|
|
|
|
|
|
Please see L for the features provided by this distribution. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 Author, Copyright, and License |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Copyright (c) 2017-2023 Hauke Daempfling (haukex@zero-g.net) |
20
|
|
|
|
|
|
|
at the Leibniz Institute of Freshwater Ecology and Inland Fisheries (IGB), |
21
|
|
|
|
|
|
|
Berlin, Germany, L |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify |
24
|
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by |
25
|
|
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or |
26
|
|
|
|
|
|
|
(at your option) any later version. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, |
29
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
30
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
31
|
|
|
|
|
|
|
GNU General Public License for more details. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License |
34
|
|
|
|
|
|
|
along with this program. If not, see L. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
1; |