Vema Venkata wrote:
>
> Tassilo wrote:
> >
> > Vema Venkata wrote:
> > >
> > > I had rewritten as per ur suggestions but
> > > there is no prompt like this "choose Change_Request,call_req or Both?>#";
> > >
> > > pls advise
> > >
> > >
> > > print "choose Change_Request,call_req or Both?>#";
> > > my$choose_table= <STDIN>;   #user has to key in Change_Request,call_req,Both
> > > chomp $choose_table;
> >
> > Maybe this is a buffering problem. Try
> >
> >     $| = 1; # turns on autoflush
> >     print "choose Change_Request,call_req or Both?>#";
> >     chomp(my $choose_table= <STDIN>);
>
>
> dude still the problem persits...
>
> pls advise

This is very basic stuff Vema. Can you get anything to print at all? Do
you have STDOUT opened to a file or redirected on the command line?

Rob



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to