Initial
[urisagit/File-ReadBackwards.git] / README
CommitLineData
0308c4d5 1
2 File::ReadBackwards.pm
3
4This module reads a file backwards line by line. It is simple to use,
5memory efficient and fast. It supports both an object and a tied handle
6interface.
7
8It is intended for processing log and other similar text files which
9typically have their newest entries appended to them. By default files
10are assumed to be plain text and have a line ending appropriate to the
11OS. But you can set the input record separator string on a per file
12basis.
13
14PREREQUISITES
15
16There are no prerequisite modules.
17
18INSTALLATION
19
20Installation is done as with most Perl modules by running these
21commands:
22
23 perl Makefile.PL
24 make
25 make test
26 make install
27
28DOCUMENTATION
29
30Documentation is in the module file in pod form. It will be installed in
31the normal documentation directories on your system. An HTML version of
32the documentation is at:
33
34 http://www.sysarch.com/perl/modules/File-ReadBackwards.html
35
36SUPPORT
37
38If you have any questions, bug reports or feedback, email it to
39
40 uri@sysarch.com
41
42AVAILABILITY
43
44The latest version of File::ReadBackwards.pm will always be available in
45this directory:
46
47 http://www.sysarch.com/perl/modules
48
49
50COPYRIGHT
51
52(C) 2000 Uri Guttman. All rights reserved.
53
54This library is free software; you can redistribute it and/or modify
55it under the same terms as Perl itself.