[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

sending irb session to a file in windows

aeggers@gmail.com

4/10/2007 3:35:00 PM

I'm looking to send an irb session to a file. How do people do this on
Windows?

Andy

5 Answers

James Gray

4/10/2007 5:38:00 PM

0

On Apr 10, 2007, at 10:40 AM, aeggers@gmail.com wrote:

> I'm looking to send an irb session to a file. How do people do this on
> Windows?

Here's what you need:

http://blog.bleything.net/2006/10/21/shell-style-histo...

James Edward Gray II

aeggers@gmail.com

4/11/2007 3:01:00 AM

0

Thanks, James, this is useful, although it appears that it only
retains the history of commands I enter, without the irb output
(return values, errors, etc). I'm surprised there's no way to send all
of an irb session (input and output) to a file -- if I'm still missing
something, please someone let me know.

For what I want to do (mostly, I just want to pull out snippets from
an irb session to describe code behavior), what works best for me so
far is to put the command prompt in QuickEdit Mode and manually copy
out sections to the clipboard. (I went a long, frustrating time
without knowing about this -- to turn it on, click the mini-command
prompt on the upper left of the command prompt window and adjust
defaults or properties.)

Andy





On Apr 10, 1:38 pm, James Edward Gray II <j...@grayproductions.net>
wrote:
> On Apr 10, 2007, at 10:40 AM, aegg...@gmail.com wrote:
>
> > I'm looking to send an irb session to a file. How do people do this on
> >Windows?
>
> Here's what you need:
>
> http://blog.bleything.net/2006/10/21/shell-style-histo...
>
> James Edward Gray II


Ben Bleything

4/11/2007 5:21:00 AM

0

On Wed, Apr 11, 2007, andy eggers wrote:
> Thanks, James, this is useful, although it appears that it only
> retains the history of commands I enter, without the irb output
> (return values, errors, etc). I'm surprised there's no way to send all
> of an irb session (input and output) to a file -- if I'm still missing
> something, please someone let me know.

As far as I know (and I'm definitely open to the possibility that I'm
wrong here) that's not really possible outside of windows, either. You
can capture the output, but getting both the input and output would be
tricky.

I think your best bet is to just copy/paste the sections as you describe
below. That's what I'd be doing on OSX to accomplish the same thing.

An alternative would be to look at the history stuff James pointed you
at, and edit the part that writes history out to a file to also exec
each line and put its output in the file. My guess is that would get
you most of the way there.

Either way, please share what you figure out :)

Ben

Brian Candler

4/11/2007 5:46:00 AM

0

On Wed, Apr 11, 2007 at 02:21:09PM +0900, Ben Bleything wrote:
> On Wed, Apr 11, 2007, andy eggers wrote:
> > Thanks, James, this is useful, although it appears that it only
> > retains the history of commands I enter, without the irb output
> > (return values, errors, etc). I'm surprised there's no way to send all
> > of an irb session (input and output) to a file -- if I'm still missing
> > something, please someone let me know.
>
> As far as I know (and I'm definitely open to the possibility that I'm
> wrong here) that's not really possible outside of windows, either. You
> can capture the output, but getting both the input and output would be
> tricky.

It's easy in Linux:

$ script foo.txt
$ irb
irb>
...
irb> exit
$ exit
$ cat foo.txt

Technically that only captures the output, but since the output includes the
keystrokes you typed echoed back, that's what you see on the screen.

Ben Bleything

4/11/2007 3:14:00 PM

0

On Wed, Apr 11, 2007, Brian Candler wrote:
> It's easy in Linux:
>
> $ script foo.txt

oh DUH. I always forget about script. Thanks for reminding me.

Ben