sartak / Tie-Handle-TtyRec

write a ttyrec

This URL has Read+Write access

Tie-Handle-TtyRec / README
100644 71 lines (48 sloc) 2.044 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
NAME
    Tie::Handle::TtyRec - write a ttyrec
 
VERSION
    Version 0.03 released ???
 
SYNOPSIS
        use Tie::Handle::TtyRec;
        my $handle = Tie::Handle::TtyRec->new("foo.ttyrec");
        print $handle "hello", "world";
 
DESCRIPTION
    A ttyrec is a format used for recording terminal sessions. Notably,
    practically all NetHack games are recorded using ttyrecs. ttyrecs
    include precise timing data and can be a little fiddly. This module lets
    you focus on your application, instead of making sure your ttyrec
    headers are perfect.
 
    The usual way to use this module is through its "new" interface. It will
    clobber the file you decide to record to. A way of allowing you to
    instead append will be included in a future version.
 
    Each argument to print will be put into its own ttyrec frame, using the
    current time. So, the following will create three separate frames,
 
        print $handle "foo", "bar", "baz";
 
    The following will create only one frame,
 
        print $handle "foo" . "bar" . "baz";
 
SEE ALSO
    Term::TtyRec, Term::TtyRec::Plus
 
AUTHOR
    Shawn M Moore, "<sartak at gmail.com>"
 
BUGS
    No known bugs.
 
    Please report any bugs through RT: email "bug-tie-handle-ttyrec at
    rt.cpan.org", or browse
    <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Tie-Handle-TtyRec>.
 
SUPPORT
    You can find this documentation for this module with the perldoc
    command.
 
        perldoc Tie::Handle::TtyRec
 
    You can also look for information at:
 
    * AnnoCPAN: Annotated CPAN documentation
        <http://annocpan.org/dist/Tie-Handle-TtyRec>
 
    * CPAN Ratings
        <http://cpanratings.perl.org/d/Tie-Handle-TtyRec>
 
    * RT: CPAN's request tracker
        <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Tie-Handle-TtyRec>
 
    * Search CPAN
        <http://search.cpan.org/dist/Tie-Handle-TtyRec>
 
COPYRIGHT AND LICENSE
    Copyright 2007 Shawn M Moore.
 
    This program is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.