| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package CLI::ComputerFiles::Util; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
53382
|
use 5.008; |
|
|
1
|
|
|
|
|
3
|
|
|
4
|
1
|
|
|
1
|
|
5
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
16
|
|
|
5
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
43
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
CLI::ComputerFiles::Util - dirhier and madeafter. To supplement Unix/Linux commands for handling Files. |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
dirhier -- Given directory names, it shows how many files/bytes/directories on directries at each depth in directory hierarchy. |
|
12
|
|
|
|
|
|
|
madeafter -- It simultaneously shows the 3 time information of files : how many seconds/mins/hours/days have passed until now. |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
The detail can be available by "dirhier --help" , "madeafter --help". |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 VERSION |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Version 0.102 |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=cut |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
our $VERSION = '0.102'; |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Copyright 2018 "Toshiyuki Shimono". |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify |
|
33
|
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by |
|
34
|
|
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or |
|
35
|
|
|
|
|
|
|
(at your option) any later version. |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, |
|
38
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
39
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
40
|
|
|
|
|
|
|
GNU General Public License for more details. |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License |
|
43
|
|
|
|
|
|
|
along with this program. If not, see L. |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
1; # End of CLI::ComputerFiles::Util |