Re: [Perl-unix-users] Method name is keyword

2004-11-30 Thread Gisle Aas
th it while $ perl -e 'foo->scalar' Can't locate object method "scalar" via package "foo" at -e line 1. invoke the method without problem. Regards, Gisle Aas, ActiveState ___ Perl-Unix-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: [Perl-unix-users] mkdir questions on unix platform

2004-11-15 Thread Gisle Aas
kdir twice for it to work: mkdir("/var/tmp/sct_1.61", 0744); mkdir("/var/tmp/sct_1.61/data", 0744); The standard File::Path module have a mkpath() function that you might consider usings instead of mkdir directly. It will create all mi

Re: [Perl-unix-users] How to start GUI debugger on linux for ActiveState perl dev kit

2004-10-29 Thread Gisle Aas
ne > know it? The PDK GUI debugger only works on Windows, but you can set it up so that scripts you run under 'perl -d' on Linux connect to the GUI on Windows. If Komodo is an alternative for you it has a GUI debugger for Perl that runs on Linux. Regards, Gisle Aas ActiveState

Re: [Perl-unix-users] getprotobyname

2004-09-08 Thread Gisle Aas
Jeff D <[EMAIL PROTECTED]> writes: > Have you tried your code with other comm protocols? > Ie substitute the udp with tcp? I suggest you try to run your program with 'truss'. That should show you what system calls fail. The Linux program 'strace' is similar. Regards, Gisle ___