Re: [Perl-unix-users] Need Help on Japanese Character

2009-04-27 Thread Jewel Nuruddin
Hi Can anyone please tell me what is the worng in my following perl code use Jcode; push(@body, Jcode::convert(@log, 'utf8')); @log contain some japanese text Thanks ___ Perl-Unix-Users mailing list Perl-Unix-Users@listserv.ActiveState.com To

Re: [Perl-unix-users] Perl to print results in html page

2009-04-27 Thread Saravanan Jothilingam
Thanks for your quick reply. My requirement is for Linux OS. Thanks, Saravanan -Original Message- From: Bill Luebkert [mailto:dbec...@roadrunner.com] Sent: Tuesday, April 28, 2009 11:10 AM To: Saravanan Jothilingam Cc: perl-unix-users@listserv.ActiveState.com Subject: Re: [Perl-unix-user

Re: [Perl-unix-users] Perl to print results in html page

2009-04-27 Thread Bill Luebkert
Saravanan Jothilingam wrote: > Hi, > > I am a beginner to perl. I have a requirement for my project, to print > success/failed results of my automation suite in *_html page_*. > > It will be grateful, if anyone could share me the code if you have any. Assuming you're talking a CGI script (calle

[Perl-unix-users] Perl to print results in html page

2009-04-27 Thread Saravanan Jothilingam
Hi, I am a beginner to perl. I have a requirement for my project, to print success/failed results of my automation suite in html page. It will be grateful, if anyone could share me the code if you have any. Thanks in Advance, Saravanan ___ Pe

Re: [Perl-unix-users] Need Help on Japanese Character

2009-04-27 Thread Jewel Nuruddin
thanks for the reply I am using perl with my subversion hooks This perl script send me notification by e-mail and this is working well This perl script get log comment from subversion and in subversion log comment both in Enlgish and japanese English is fine now I want to show japanese text in my

Re: [Perl-unix-users] How do i implement tail -f in Perl

2009-04-27 Thread Poul H. Sørensen
Kamal Ahmed wrote: > Hi, > > Is there a way to implement tail -f in perl wihout using external > packages like File::Tail Yes, there are many ways to do that. I would suggest either: my @tailf=( '/bin/tail', '-f', $file ); system( @tailf ); or try "perldoc -m File::Tail" and th

[Perl-unix-users] How do i implement tail -f in Perl

2009-04-27 Thread Kamal Ahmed
Hi, Is there a way to implement tail -f in perl wihout using external packages like File::Tail Thanks, -Kamal. ___ Perl-Unix-Users mailing list Perl-Unix-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: [Perl-unix-users] Need Help on Japanese Character

2009-04-27 Thread Thurn, Martin (IS)
WHERE are you trying to show it? Emacs? Xterm? OpenOffice document? Dot matrix printer? You need to configure your display mechanism to properly display Japanese before worrying about what your Perl programming is printing. - - Martin From: perl-unix-

[Perl-unix-users] Need Help on Japanese Character

2009-04-27 Thread Jewel Nuruddin
Hi I am new in perl, I want to show Japanese character, I had try with several option but I could not, Could you please help me. print @log ; I want to print this @log value in proper Japanese character Thanks ___ Perl-Unix-Users mailing list