Search results for "module:File::Map"
File::Map - Memory mapping made simple and safe.
File::Map maps files or anonymous memory into perl variables. Advantages of memory mapping * Unlike normal perl variables, mapped memory is (usually) shared between threads or forked processes. * It is an efficient way to slurp an entire file. Unlike...
LEONT/File-Map-0.71 - 10 Apr 2023 12:19:06 UTC
Data::File::Map - Read data file definitions stored as XML
Data::File::Map will allow you to read in a data file definition stored as XML. The map can then be used to parse records in a data file. Handles delimited and formatted text data....
JHALLOCK/Data-File-Map-0.09 - 13 Nov 2014 04:48:25 UTC
File::Locate::Iterator::FileMap - shared mmaps for File::Locate::Iterator
This is an internal part of "File::Locate::Iterator" not intended for other use. A FileMap object holds a file mmapped by "File::Map" and will re-use it rather than mapping the same file a second time. This module shouldn't exist, since "File::Map" i...
KRYDE/File-Locate-Iterator-28 - 16 Nov 2019 04:08:38 UTC
Net::ACL::File::RouteMap - BGP Route-Maps loaded from configuration string.
This module extends the Net::ACL::File::Standard class to handle community-lists. See Net::ACL::File::Standard for details....
LORENSEN/Net-ACL-0.07 - 06 Jun 2003 20:01:38 UTC
File::cd - Easily and safely change directory
The global (and negative) effect of perl builtin function "chdir" is well known (see File::chdir's documentation for more details). And few modules have been created to solve this problem: * File::chdir, by David Golden. * File::pushd, also by David ...
SYALTUT/File-cd-0.003 - 23 Sep 2013 06:55:30 UTC
URI::file - URI that maps to local file names
The "URI::file" class supports "URI" objects belonging to the *file* URI scheme. This scheme allows us to map the conventional file names found on various computer systems to the URI name space, see RFC 8089 <https://www.rfc-editor.org/rfc/rfc8089.ht...
OALDERS/URI-5.21 - 23 Aug 2023 16:02:58 UTC
File::Tee - replicate data sent to a Perl stream
This module is able to replicate data written to a Perl stream into another streams. It is the Perl equivalent of the shell utility tee(1). It is implemeted around "fork", creating a new process for every tee'ed stream. That way, there are no problem...
SALVA/File-Tee-0.07 - 04 Nov 2011 19:45:14 UTC
Pod::objects - package with objects for representing POD documents
The following section describes the objects returned by Pod::Compiler and their methods. These objects all inherit from Tree::DAG_Node, so all methods described there are valid as well. The set/retrieve methods all work in the following way: If no ar...
MAREKR/Pod-Compiler-0.21 - 22 Sep 2013 15:41:49 UTC
File::Send - Sending files over a socket efficiently and cross-platform
File::Send provides access to your operating system's "sendfile" facility, or if that is not available uses File::Map and "syswrite" to achieve a similarly efficient io function. It allows you to efficiently transfer data from one filehandle to anoth...
LEONT/File-Send-0.002 - 16 Jun 2013 21:52:17 UTC
File::Grep - Find matches to a pattern in a series of files and related functions
File::Grep mimics the functionality of the grep function in perl, but applying it to files instead of a list. This is similar in nature to the UNIX grep command, but more powerful as the pattern can be any legal perl function. The main functions prov...
MNEYLON/File-Grep-0.02 - 17 Sep 2005 04:36:39 UTC
File::Data - interface to file data
Wraps all the accessing of a file into a convenient set of calls for reading and writing data, including a simple regex interface. Note that the file needs to exist prior to using this module! See new()...
RFOLEY/File-Data-1.20 - 17 Jun 2016 11:44:36 UTC
File::Path - Create or remove directory trees
This module provides a convenient way to create directories of arbitrary depth and to delete an entire directory subtree from the filesystem. The following functions are provided: make_path( $dir1, $dir2, .... ) make_path( $dir1, $dir2, ...., \%opts ...
JKEENAN/File-Path-2.18 - 05 Nov 2020 01:30:15 UTC
Test::File - test file attributes
This modules provides a collection of test utilities for file attributes. Some file attributes depend on the owner of the process testing the file in the same way the file test operators do. For instance, root (or super-user or Administrator) may alw...
BDFOY/Test-File-1.993 - 01 Jan 2023 13:38:19 UTC
File::lockf - Perl module interface to the lockf system call
File-Lockf is an interface to the lockf system call. Perl supports the flock system call natively, but that does not acquire network locks. Perl also supports the fcntl system call, but that is somewhat ugly to use. There are other locking modules av...
PHENSON/File-lockf-0.26 - 04 Jun 2020 04:31:06 UTC
File::Slurp - Simple and Efficient Reading/Writing/Modifying of Complete Files
This module provides subs that allow you to read or write entire files with one simple call. They are designed to be simple to use, have flexible ways to pass in or get the file contents and to be very efficient. There is also a sub to read in all th...
CAPOEIRAB/File-Slurp-9999.32 - 01 Jul 2020 00:34:08 UTC
File::ByLine - Line-by-line file access loops
Finding myself writing the same trivial loops to read files, or relying on modules like "Perl6::Slurp" that didn't quite do what I needed (abstracting the loop), it was clear something easy, simple, and sufficiently Perl-ish was needed....
JMASLAK/File-ByLine-1.192590 - 16 Sep 2019 01:49:06 UTC
File::Random - Perl module for random selecting of a file
This module simplifies the routine job of selecting a random file. (As you can find at CGI scripts). It's done, because it's boring (and errorprone), always to write something like my @files = (<*.*>); my $randf = $files[rand @files]; or opendir DIR,...
BIGJ/File-Random-0.21 - 10 Apr 2021 05:42:27 UTC