in reply to Re^2: Can I seek in a command's piped output?
in thread Can I seek in a command's piped output?

Perhaps IO::Unread.

  • Comment on Re^3: Can I seek in a command's piped output?

Replies are listed 'Best First'.
Re^4: Can I seek in a command's piped output?
by ikegami (Patriarch) on Feb 12, 2009 at 16:01 UTC

    Cool module! Turns out it's just an interface to an existing PerlIO method, so it's very efficient. (In the unlikely case that your perl don't use PerlIO, slower tie is used as a fallback.)

    Unfortunately, it doesn't build on Windows. From the error CPAN testers are getting, I'm guessing it's calling a function that's meant for internal use only. The developers of Perl have been able to restrict access to these functions on Window, but not on other systems (yet).

    I'll see if I confirm this.

Re^4: Can I seek in a command's piped output?
by wardy3 (Scribe) on Feb 16, 2009 at 00:26 UTC
    Thanks!

    That is a good module indeed. Worked fine under Cygwin, which is where I need it.

    Thanks to all who replied