Re: print output on console at runtime

2011-07-28 Thread Irfan Sayed
the exit status please suggest regards irfan From: Irfan Sayed To: Jim Gibson ; Perl Beginners Sent: Thursday, July 28, 2011 12:06 PM Subject: Re: print output on console at runtime can this be happen if command needs to be executed on remote machine and the

Re: print output on console at runtime

2011-07-27 Thread Irfan Sayed
: print output on console at runtime You chose to allow Jim Gibson (jimsgib...@gmail.com) even though this message failed authentication Click to disallow

Re: print output on console at runtime

2011-07-13 Thread Jim Gibson
At 12:27 AM -0700 7/13/11, Irfan Sayed wrote: thanks John and Jim but, is this solution is applicable to only "find" command ? No. if i change the command to some other system command , will this solution work? Yes. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional c

Re: print output on console at runtime

2011-07-13 Thread Irfan Sayed
PM Subject: Re: print output on console at runtime You chose to allow Jim Gibson (jimsgib...@gmail.com) even though this message failed authentication Click to disallow

Re: print output on console at runtime

2011-07-12 Thread John W. Krahn
Irfan Sayed wrote: hi, Hello, i need to print the output of a command on the console at runtime lets say, i need to execute find command .as of now , what i am doing is , @cmd= `find . -name "abc"`; print "@cmd\n"; now what happens is, once the command completed then it will send entire ou

Re: print output on console at runtime

2011-07-12 Thread Jim Gibson
At 10:46 PM -0700 7/12/11, Irfan Sayed wrote: hi, i need to print the output of a command on the console at runtime lets say, i need to execute find command .as of now , what i am doing is , @cmd= `find . -name "abc"`; print "@cmd\n"; now what happens is, once the command completed then it wil

Re: print output on console at runtime

2011-07-12 Thread Chandrashekar Bhat
You can use system command inside perl system(" find . -iname 'abc'"); -- Shekar On Wed, Jul 13, 2011 at 11:16 AM, Irfan Sayed wrote: > hi, > > i need to print the output of a command on the console at runtime > lets say, i need to execute find command .as of now , what i am doing is , > > @cmd