OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
perl5
/
Git
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/20/2022 06:44:51 AM
rwxr-xr-x
📄
I18N.pm
2.42 KB
10/14/2022 02:15:33 PM
rw-r--r--
📄
IndexInfo.pm
644 bytes
10/14/2022 02:15:33 PM
rw-r--r--
📁
LoadCPAN
-
11/20/2022 06:44:51 AM
rwxr-xr-x
📄
LoadCPAN.pm
3.3 KB
10/14/2022 02:15:33 PM
rw-r--r--
📄
Packet.pm
4.03 KB
10/14/2022 02:15:33 PM
rw-r--r--
Editing: IndexInfo.pm
Close
package Git::IndexInfo; use strict; use warnings; use Git qw/command_input_pipe command_close_pipe/; sub new { my ($class) = @_; my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/); bless { gui => $gui, ctx => $ctx, nr => 0}, $class; } sub remove { my ($self, $path) = @_; if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") { return ++$self->{nr}; } undef; } sub update { my ($self, $mode, $hash, $path) = @_; if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") { return ++$self->{nr}; } undef; } sub DESTROY { my ($self) = @_; command_close_pipe($self->{gui}, $self->{ctx}); } 1;