On Mon, Jul 02, 2001 at 03:42:51PM -0400, schwern@pobox.com wrote: > On Mon, Jul 02, 2001 at 02:23:48PM -0500, Jarkko Hietaniemi wrote: > > (We need a debugger test suite...) > > Somebody mentioned there was some magic filehandle we could use rather > than worrying about piping things through STDIN and TTYs, etc... > Or does the debugger just listen to STDIN? STDIN - Almost never. But you should be able to do whatever you want with something like $ENV{PERLDB_OPTS} = 'TTY=&STDIN,&STDOUT L=&STDOUT'; BTW, it is a pity that almost-never used `RemotePort' (sp?) now conflicts with often-needed `ReadLine', so env PERLDB_OPTS=R=0 perl -d readline-application would not work any more, you need ReadLine=0 (nowadays one can through in C=7 as well). env "PERLDB_OPTS=ReadLine=0 C=7" perl -d readline-application ... What about changing it to DebugTTYport? IlyaThread Previous | Thread Next