| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::UnixCommandImplementations; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
436840
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
399
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
6
|
|
|
|
|
|
|
our $DATE = '2024-08-13'; # DATE |
|
7
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-UnixCommandImplementations'; # DIST |
|
8
|
|
|
|
|
|
|
our $VERSION = '0.001'; # VERSION |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $LIST = { |
|
11
|
|
|
|
|
|
|
summary => "List of various CLIs that try to reimplement traditional Unix commands", |
|
12
|
|
|
|
|
|
|
description => <<'MARKDOWN', |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
MARKDOWN |
|
15
|
|
|
|
|
|
|
entries => [ |
|
16
|
|
|
|
|
|
|
{ |
|
17
|
|
|
|
|
|
|
module => 'PerlPowerTools', |
|
18
|
|
|
|
|
|
|
script => [qw/ |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
addbib apply ar arch arithmetic asa awk banner base64 basename |
|
21
|
|
|
|
|
|
|
bc bcd cal cat chgrp ching chmod chown clear cmp col colrm comm |
|
22
|
|
|
|
|
|
|
cp cut date dc deroff diff dirname du echo ed env expand expr |
|
23
|
|
|
|
|
|
|
factor false file find fish fmt fold fortune from glob grep |
|
24
|
|
|
|
|
|
|
hangman head hexdump id install join kill ln lock look ls mail |
|
25
|
|
|
|
|
|
|
maze mimedecode mkdir mkfifo moo morse nl od par paste patch pig |
|
26
|
|
|
|
|
|
|
ping pom ppt pr primes printenv printf pwd rain random rev rm |
|
27
|
|
|
|
|
|
|
rmdir robots rot13 seq shar sleep sort spell split strings sum |
|
28
|
|
|
|
|
|
|
tac tail tar tee test time touch tr true tsort tty uname |
|
29
|
|
|
|
|
|
|
unexpand uniq units unlink unpar unshar uudecode uuencode wc |
|
30
|
|
|
|
|
|
|
what which whoami whois words wump xargs yes |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
/], |
|
33
|
|
|
|
|
|
|
'x.command' => [qw/ |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
addbib apply ar arch arithmetic asa awk banner base64 basename |
|
36
|
|
|
|
|
|
|
bc bcd cal cat chgrp ching chmod chown clear cmp col colrm comm |
|
37
|
|
|
|
|
|
|
cp cut date dc deroff diff dirname du echo ed env expand expr |
|
38
|
|
|
|
|
|
|
factor false file find fish fmt fold fortune from glob grep |
|
39
|
|
|
|
|
|
|
hangman head hexdump id install join kill ln lock look ls mail |
|
40
|
|
|
|
|
|
|
maze mimedecode mkdir mkfifo moo morse nl od par paste patch pig |
|
41
|
|
|
|
|
|
|
ping pom ppt pr primes printenv printf pwd rain random rev rm |
|
42
|
|
|
|
|
|
|
rmdir robots rot13 seq shar sleep sort spell split strings sum |
|
43
|
|
|
|
|
|
|
tac tail tar tee test time touch tr true tsort tty uname |
|
44
|
|
|
|
|
|
|
unexpand uniq units unlink unpar unshar uudecode uuencode wc |
|
45
|
|
|
|
|
|
|
what which whoami whois words wump xargs yes |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
/], |
|
48
|
|
|
|
|
|
|
}, |
|
49
|
|
|
|
|
|
|
], |
|
50
|
|
|
|
|
|
|
}; |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
1; |
|
53
|
|
|
|
|
|
|
# ABSTRACT: List of various CLIs that try to reimplement traditional Unix commands |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
__END__ |