Hi All

I'm working on Unix (solaris)
I want to set the coredumpsize to 0

On shell (Csh) we run 
limit coredumpsize 0


Now i want to do the same using Perl script.
I cannot use system or backticks (` `) because this will fork off a
different shell.

I tried using eval  but it's not working. Probably i'm missing out
something

Code:

@array = `/hm/ahuja/try`;    #/hm/ahuja/try returns the string limit
coredumpsize 0
@array1 = `/hm/ahuja/try1`; #/hm/ahuja/try1 returns limit

print @array;   #prints limit coredumpsize 0
print @array1; #prints limit

eval {@array};
eval {@array1};


Please help!!!


Regards
Mayank

"The difference between ordinary and extraordinary is that little extra"
                                                                  -Anon

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

Reply via email to