Tie::Handle::Offset - Tied handle that hides the beginning of a file
Contents
Copyright And License
This software is Copyright (c) 2012 by David Golden.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
perl v5.36.0 2022-11-20 Tie::Handle::Offset(3pm)
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
