Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
sartak committed Nov 12, 2007
1 parent ff2f5d1 commit a969492
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README
@@ -1,6 +1,22 @@
Tie-Handle-TtyRec 0.01

Tie::Handle::TtyRec is
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 C<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";

MAJOR CHANGES
0.01: first version
Expand Down

0 comments on commit a969492

Please sign in to comment.