| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
1
|
|
|
1
|
|
901
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
24
|
|
|
2
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
38
|
|
|
3
|
|
|
|
|
|
|
package App::FilterUtils::byte; |
|
4
|
|
|
|
|
|
|
# ABSTRACT: Format input bytes with IEC prefixes |
|
5
|
|
|
|
|
|
|
our $VERSION = '0.001'; # VERSION |
|
6
|
1
|
|
|
1
|
|
8
|
use base 'App::Cmd::Simple'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
78
|
|
|
7
|
1
|
|
|
1
|
|
5
|
use utf8; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
4
|
|
|
8
|
1
|
|
|
1
|
|
25
|
use charnames qw(); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
14
|
|
|
9
|
1
|
|
|
1
|
|
3
|
use open qw( :encoding(UTF-8) :std ); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
4
|
|
|
10
|
1
|
|
|
1
|
|
219
|
use Module::Load qw(load); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
4
|
|
|
11
|
1
|
|
|
1
|
|
49
|
use Getopt::Long::Descriptive; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
5
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
287
|
use utf8; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
3
|
|
|
14
|
1
|
|
|
1
|
|
309
|
use Number::Bytes::Human qw(format_bytes); |
|
|
1
|
|
|
|
|
6646
|
|
|
|
1
|
|
|
|
|
282
|
|
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=pod |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=encoding utf8 |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
byte - Format input bytes with IEC prefixes |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
$ byte 66062639 |
|
27
|
|
|
|
|
|
|
64M |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 OPTIONS |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 version / v |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Shows the current version number |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$ byte --version |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 help / h |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Shows a brief help message |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
$ byte --help |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
sub opt_spec { |
|
46
|
|
|
|
|
|
|
return ( |
|
47
|
0
|
|
|
0
|
1
|
|
[ 'version|v' => "show version number" ], |
|
48
|
|
|
|
|
|
|
[ 'help|h' => "display a usage message" ], |
|
49
|
|
|
|
|
|
|
); |
|
50
|
|
|
|
|
|
|
} |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
sub validate_args { |
|
53
|
0
|
|
|
0
|
1
|
|
my ($self, $opt, $args) = @_; |
|
54
|
|
|
|
|
|
|
|
|
55
|
0
|
0
|
|
|
|
|
if ($opt->{'help'}) { |
|
|
|
0
|
|
|
|
|
|
|
56
|
0
|
|
|
|
|
|
my ($opt, $usage) = describe_options( |
|
57
|
|
|
|
|
|
|
$self->usage_desc(), |
|
58
|
|
|
|
|
|
|
$self->opt_spec(), |
|
59
|
|
|
|
|
|
|
); |
|
60
|
0
|
|
|
|
|
|
print $usage; |
|
61
|
0
|
|
|
|
|
|
print "\n"; |
|
62
|
0
|
|
|
|
|
|
print "For more detailed help see 'perldoc App::FilterUtils::byte'\n"; |
|
63
|
|
|
|
|
|
|
|
|
64
|
0
|
|
|
|
|
|
print "\n"; |
|
65
|
0
|
|
|
|
|
|
exit; |
|
66
|
|
|
|
|
|
|
} |
|
67
|
|
|
|
|
|
|
elsif ($opt->{'version'}) { |
|
68
|
0
|
|
|
|
|
|
print $App::FilterUtils::byte::VERSION, "\n"; |
|
69
|
0
|
|
|
|
|
|
exit; |
|
70
|
|
|
|
|
|
|
} |
|
71
|
|
|
|
|
|
|
|
|
72
|
0
|
|
|
|
|
|
return; |
|
73
|
|
|
|
|
|
|
} |
|
74
|
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
sub execute { |
|
76
|
0
|
|
|
0
|
1
|
|
my ($self, $opt, $args) = @_; |
|
77
|
|
|
|
|
|
|
|
|
78
|
0
|
0
|
|
0
|
|
|
my $readarg = @$args ? sub { shift @$args } : sub { }; |
|
|
0
|
|
|
0
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
79
|
0
|
|
|
|
|
|
while (defined ($_ = $readarg->())) { |
|
80
|
0
|
|
|
|
|
|
chomp; |
|
81
|
0
|
|
|
|
|
|
print format_bytes($_), "\n"; |
|
82
|
|
|
|
|
|
|
} |
|
83
|
|
|
|
|
|
|
|
|
84
|
0
|
|
|
|
|
|
return; |
|
85
|
|
|
|
|
|
|
} |
|
86
|
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
1; |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
__END__ |