Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
IO /
Delete
Unzip
Name
Size
Permission
Date
Action
All
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Compress
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Socket
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Uncompress
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
All.pm
20.96
KB
-rw-rw-rw-
2017-07-19 01:05
All.pod
48.58
KB
-rw-rw-rw-
2017-07-19 01:05
AtomicFile.pm
5.24
KB
-rw-rw-rw-
2020-01-17 05:52
CaptureOutput.pm
13.91
KB
-rw-rw-rw-
2019-10-26 01:40
HTML.pm
19.23
KB
-rw-rw-rw-
2020-09-26 20:51
InnerFile.pm
6.88
KB
-rw-rw-rw-
2020-01-17 05:52
Interactive.pm
7.81
KB
-rw-rw-rw-
2016-09-04 09:31
Lines.pm
4.07
KB
-rw-rw-rw-
2020-01-17 05:52
Scalar.pm
14.68
KB
-rw-rw-rw-
2020-01-17 05:52
ScalarArray.pm
16.06
KB
-rw-rw-rw-
2020-01-17 05:52
SessionData.pm
6.61
KB
-rw-rw-rw-
2013-05-23 09:50
SessionSet.pm
5.17
KB
-rw-rw-rw-
2013-05-23 09:46
String.pm
11.19
KB
-rw-rw-rw-
2005-12-05 14:00
Stringy.pm
1.78
KB
-rw-rw-rw-
2020-01-17 05:52
Wrap.pm
8.58
KB
-rw-rw-rw-
2020-01-17 05:52
WrapTie.pm
14.37
KB
-rw-rw-rw-
2020-01-17 05:52
Save
Rename
package IO::Stringy; use strict; use Exporter; our $VERSION = '2.113'; 1; __END__ =head1 NAME IO-stringy - I/O on in-core objects like strings and arrays =head1 SYNOPSIS use strict; use warnings; use IO::AtomicFile; # Write a file which is updated atomically use IO::InnerFile; # define a file inside another file use IO::Lines; # I/O handle to read/write to array of lines use IO::Scalar; # I/O handle to read/write to a string use IO::ScalarArray; # I/O handle to read/write to array of scalars use IO::Wrap; # Wrap old-style FHs in standard OO interface use IO::WrapTie; # Tie your handles & retain full OO interface # ... =head1 DESCRIPTION This toolkit primarily provides modules for performing both traditional and object-oriented i/o) on things I<other> than normal filehandles; in particular, L<IO::Scalar|IO::Scalar>, L<IO::ScalarArray|IO::ScalarArray>, and L<IO::Lines|IO::Lines>. In the more-traditional IO::Handle front, we have L<IO::AtomicFile|IO::AtomicFile> which may be used to painlessly create files which are updated atomically. And in the "this-may-prove-useful" corner, we have L<IO::Wrap|IO::Wrap>, whose exported wraphandle() function will clothe anything that's not a blessed object in an IO::Handle-like wrapper... so you can just use OO syntax and stop worrying about whether your function's caller handed you a string, a globref, or a FileHandle. =head1 AUTHOR Eryq (F<eryq@zeegee.com>). President, ZeeGee Software Inc (F<http://www.zeegee.com>). =head1 CONTRIBUTORS Dianne Skoll (F<dfs@roaringpenguin.com>). =head1 COPYRIGHT & LICENSE Copyright (c) 1997 Erik (Eryq) Dorfman, ZeeGee Software, Inc. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut