line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CLI::Files::Utils; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
46753
|
use 5.006; |
|
1
|
|
|
|
|
2
|
|
4
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
14
|
|
5
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
37
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
CLI::Files::Utils - Extra CLI utilies for handling file bunches. |
10
|
|
|
|
|
|
|
'dirhier' and 'madeafter' -- Utilize them after mastering "ls -l" and "find .". |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Other CLI utilities are also provided : 'colorplus', 'timeput', 'microsec' |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 VERSION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Version 0.11 |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=cut |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
our $VERSION = '0.11'; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 SUPPORT |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
You can find documentation for programs provided by this module as follows : |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
madeafter --help |
29
|
|
|
|
|
|
|
dirhier --help |
30
|
|
|
|
|
|
|
colorplus --help |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Copyright 2018 "Toshiyuki Shimono". |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify |
37
|
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by |
38
|
|
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or |
39
|
|
|
|
|
|
|
(at your option) any later version. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, |
42
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
43
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
44
|
|
|
|
|
|
|
GNU General Public License for more details. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License |
47
|
|
|
|
|
|
|
along with this program. If not, see L. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
1; # End of CLI::Files::Utils |