Re: what's the problem with a system call

2013-05-14 Thread xiaolan
Thanks all the answers. Shlomi long time no see :) Have another question that, what's the difference between the system call child process and the native forked child process? Does the child process of system call have the problems of receiving signals from the parent? On Tue, May 14, 2013

what's the problem with a system call

2013-05-13 Thread xiaolan
Hello, what's the disadvantage when calling a system command from Perl? i.e, system call to rsync rather than using the File::Rsync module. is it hard to control the signals between the caller process and the called system command? Thanks.

a question about @ISA

2012-04-09 Thread xiaolan
Hi, I just want to send email using MIME::Lite with Net::SMTP::SSL. But MIME::Lite is going only with Net::SMTP by default. So I searched and found a hack: use Net::SMTP::SSL; BEGIN { @MIME::Lite::SMTP::ISA = qw(Net::SMTP::SSL); } This does work, now I can send messages with SMTPs. But how does

Re: Oracle DBA's group mail ids'

2011-04-13 Thread xiaolan
why not google? I did and found this: http://oss.oracle.com/mailman/listinfo/ On Wed, Apr 13, 2011 at 5:03 PM, Raveen du raveendu.oracle...@gmail.com wrote: Dear friends,  awaiting for your reply . can you please someone advis me on this please On Tue, Apr 12, 2011 at 4:12 PM, Raveen du

Re: about utf8

2011-01-29 Thread xiaolan
On Sat, Jan 29, 2011 at 9:46 PM, Shawn H Corey shawnhco...@gmail.com wrote: On 11-01-29 03:27 AM, xiaolan wrote: Hello, I'm not much sure what's the difference between the two statements below? use encoding 'utf8'; use utf8; I have read their documents but not very understandful