logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Tie::Handle::Offset - Tied handle that hides the beginning of a file

Author

       David Golden <dagolden@cpan.org>

Description

       This modules provides a file handle that hides the beginning of a file.  After opening, the file is
       positioned at the offset location. "seek()" and "tell()" calls are modified to preserve the offset.

       For example, "tell($fh)" will return 0, though the actual file position is at the offset.  Likewise,
       "seek($fh,80,0)" will seek to 80 bytes from the offset instead of 80 bytes from the actual start of the
       file.

Name

       Tie::Handle::Offset - Tied handle that hides the beginning of a file

Support

Bugs/FeatureRequests
       Please report any bugs or feature requests through the issue tracker at
       <https://github.com/dagolden/tie-handle-offset/issues>.  You will be notified automatically of any
       progress on your issue.

   SourceCode
       This is open source software.  The code repository is available for public review and contribution under
       the terms of the license.

       <https://github.com/dagolden/tie-handle-offset>

         git clone https://github.com/dagolden/tie-handle-offset.git

Synopsis

         use Tie::Handle::Offset;

         tie *FH, 'Tie::Handle::Offset', "<", $filename, { offset => 20 };

Version

       version 0.004

See Also