Search results for "module:Tie::File"
Tie::File - Access the lines of a disk file via a Perl array
"Tie::File" represents a regular text file as a Perl array. Each element in the array corresponds to a record in the file. The first line of the file is element 0 of the array; the second line is element 1, and so on. The file is *not* loaded into me...
TODDR/Tie-File-1.07 - 20 Feb 2023 17:05:34 UTC
Tie::File::AsHash - access lines of a file as a hash splitting at separator
"Tie::File::AsHash" uses "Tie::File" and perl code from "Tie::Array::AsHash" so files can be tied to hashes. "Tie::File" does all the hard work while "Tie::File::AsHash" works a little magic of its own. The module was initially written by Chris Angel...
REHSACK/Tie-File-AsHash-0.200 - 12 Nov 2013 16:08:34 UTC
Tie::File::AnyData - Access the data of a disk file via a Perl array
This module hacks 'Tie::File' to allow it to manage any kind of data. See the documentation of 'Tie::File' for more details on the functionality of this module. To do so, you must provide a code reference (an anonymous subroutine) to the tie call. Th...
MOTIF/Tie-File-AnyData-0.03 - 24 Mar 2008 18:34:28 UTC
Tie::File::Hashify - Parse a file and tie the result to a hash.
This module helps parsing simple text files and mapping it's contents to a plain hash. It reads a file line by line and uses a callback or expression you provide to parse a key and a value from it. The key/value pairs are then available through the g...
JKRAMER/Tie-File-Hashify-0.03 - 27 Jun 2008 20:37:50 UTC
File::ExtAttr::Tie - Tie interface to extended attributes of files
File::ExtAttr::Tie provides access to extended attributes of a file through a tied hash. Creating a new key creates a new extended attribute associated with the file. Modifying the value or removing a key likewise modifies/removes the extended attrib...
RICHDAWE/File-ExtAttr-1.09 - 07 Mar 2009 10:37:45 UTC
Tie::MLDBM::Lock::File - Tie::MLDBM Locking Component Module
This module forms a locking component of the Tie::MLDBM framework, employing synchronisation through use of the "flock" function. This use of "flock" is performed with a temporary lock file which is specified in the Tie::MLDBM framework constructor. ...
ROBAU/Tie-MLDBM-1.04 - 26 Oct 2002 10:40:15 UTC
Tie::File::FixedRecLen - Fixed Length Record support for Tie:File
Use Tie::File::FixedRecLen as a drop-in replacement to Tie::File in order to add support for fixed length records within your tied files. When tieing to a file, you must specify the length of a record in the file. This length does not include the rec...
OLIVER/Tie-File-FixedRecLen-2.112531 - 10 Sep 2011 13:23:35 UTC
Tie::Array::File::LazyRead - Read a file record by record using tied array and for()
EXPERIMENTAL, PROOF-OF-CONCEPT. When "for()" is given a tied array: for (@tied_array) { ... } it will invoke "FETCHSIZE" on the tied array to find out the size, then FETCH(0), *then FETCHSIZE() again, then FETCH(1), and so on.* In other words, "FETCH...
PERLANCAR/Tie-Array-File-LazyRead-0.001 - 16 Apr 2019 10:54:24 UTC
Tie::File::AnyData::MultiRecord_CSV - Accessing groups of CSV records in a file via a Perl array.
"Tie::File::AnyData::MultiRecord_CSV" allows the management of groups of CSV records in a file via a Perl array through "Tie::File::AnyData", so read the documentation of the latter module for further details on its internals. For the management of C...
MOTIF/Tie-File-AnyData-MultiRecord_CSV-0.01 - 23 Mar 2008 20:04:51 UTC
Tie::LogFile - Simple Log Autoformating
This module provides a quick and simple way to print out a log file with a repetative format. In many of my projects I had something like this: sub logit { print $LOG scalar localtime, @_; } This is less than flexible, and still lends itself to logli...
CREIN/Tie-LogFile-0.1 - 16 Oct 2002 10:14:11 UTC