OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
perl5
/
Git
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:50:33 AM
rwxr-xr-x
📄
I18N.pm
2.42 KB
04/26/2023 02:14:45 PM
rw-r--r--
📄
IndexInfo.pm
644 bytes
04/26/2023 02:14:45 PM
rw-r--r--
📁
LoadCPAN
-
05/09/2024 07:13:18 AM
rwxr-xr-x
📄
LoadCPAN.pm
3.3 KB
04/26/2023 02:14:45 PM
rw-r--r--
📄
Packet.pm
4.03 KB
04/26/2023 02:14:45 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;