Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: PerlDebug and mysterious Term::Rendezvous

by neuroball (Pilgrim)
on Jan 30, 2004 at 06:53 UTC ( [id://325157]=note: print w/replies, xml ) Need Help??


in reply to PerlDebug and mysterious Term::Rendezvous

Maybe this is a misunderstanding... but there is a way to redirect the output of a perl debug session to another terminal.

Using perl -d your_script.pl > /dev/tty1 all output from the debugged script will be send to tty1 and leaves the debug session clutter free.

/oliver/

Replies are listed 'Best First'.
Re: Re: PerlDebug and mysterious Term::Rendezvous
by dominix (Deacon) on Jan 30, 2004 at 08:50 UTC
    Thanks, but I already tried that, and that not what I want.
    I was expecting for a control of the debugger from another tty while normal program display append on the original tty. is THAT possible ?
    --
    dominix

      Hm... I think so. I just had to do some research to find out how to overcome the terminal from taking over the input/output of the debugger.

      You have to do the following:

      • Figure out what your debug options will be and either write the options to the .perldb file or add it to the PERLDB_OPTS environment variable like so:
        • .perldb
          parse_options("TTY=/dev/ttyp3 LineInfo=/dev/ttyp4 ReadLine=1");
        • terminal
          PERLDB_OPTS="TTY=/dev/ttyp3 LineInfo=/dev/ttyp4 ReadLine=1" perl -d your_script.pl
      • TTY is the terminal you want to debug in.
      • LineInfo is the terminal you want to see the output of your script in
      • ReadLine signals that you want to step through your script
      • Though for the whole thing to work you have to send the terminal you want to debug in to sleep before you start to debug. I.e. Go to ttyp3 and give it a command of sleep 1000000.

      /oliver/

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://325157]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-04-19 02:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found