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
: print output on console at runtime
You chose to allow Jim Gibson (jimsgib...@gmail.com) even though this message
failed authentication
Click to disallow
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
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
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
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
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