Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
File-Temp /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
cmp.t
1.1
KB
-r--r--r--
2014-12-27 11:48
fork.t
2.04
KB
-r--r--r--
2014-12-27 11:48
lock.t
1.29
KB
-r--r--r--
2014-12-27 11:48
mktemp.t
2.4
KB
-r--r--r--
2014-12-27 11:48
object.t
4.38
KB
-r--r--r--
2014-12-27 11:48
posix.t
1.45
KB
-r--r--r--
2014-12-27 11:48
rmtree.t
898
B
-r--r--r--
2014-12-27 11:48
security.t
2.91
KB
-r--r--r--
2014-12-27 11:48
seekable.t
1.39
KB
-r--r--r--
2014-12-27 11:48
tempfile.t
4.98
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
#!perl -w # Test overloading use Test::More tests => 19; use strict; BEGIN {use_ok( "File::Temp" ); } { my $fh = new File::Temp(); isa_ok ($fh, 'File::Temp'); ok( "$fh" ne "foo", "compare stringified object with string"); ok( $fh ne "foo", "compare object with string"); ok( $fh eq $fh, "compare eq with self"); ok( $fh != 0, "compare != 0"); ok( $fh == $fh, "compare == with self"); ok( $fh != \*STDOUT, "compare != \*STDOUT"); { my $num = $fh+0; like ($num, qr/^\d+$/, '+0 is a number'); } { my $str = "$fh"; unlike ($str, qr/^\d+$/, '"" is not a number'); } } { my $fh = File::Temp->newdir(); isa_ok ($fh, 'File::Temp::Dir'); ok( "$fh" ne "foo", "compare stringified object with string"); ok( $fh ne "foo", "compare object with string"); ok( $fh eq $fh, "compare eq with self"); ok( $fh != 0, "compare != 0"); ok( $fh == $fh, "compare == with self"); ok( $fh != \*STDOUT, "compare != \*STDOUT"); { my $num = $fh+0; like ($num, qr/^\d+$/, '+0 is a number'); } { my $str = "$fh"; unlike ($str, qr/^\d+$/, '"" is not a number'); } }