RE: Cpan Modul creation

2001-11-28 Thread marcus_holland-moritz
| Does anyone know where i can find a documentation to make my Modul | CPAN conform? http://www-106.ibm.com/developerworks/linux/library/l-make.html -- Marcus -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

FW: question on cook book example

2002-01-04 Thread marcus_holland-moritz
| buy not exactly sure how this is working. tried looking at | perldoc pack | but no luck. explanation is appreciated. perldoc unpack gives the explanation: In addition to fields allowed in pack(), you may prefix a field with a % to indicate that you want a -bit checksum of the items inst

RE: How to detect the correct OS:

2002-01-14 Thread marcus_holland-moritz
Hi Chris, Perl's special variable $^O contains the name of the OS, which is, e.g. $^O eq 'hpux' # on HP-UX $^O eq 'MSWin32' # on Windows $^O eq 'linux' # on Linux Hope this helps, -- Marcus | I need to find out which OS I am on - | It would be nice to know: | Ref Hiat | Man

RE: need help to understand a regex

2002-01-15 Thread marcus_holland-moritz
The regex you gave will match on every $key that consists of: - the beginning of the string - immediately followed by the lowercase letter 'r' - immediately followed by one or more digits, which are stored in $1 - immediately followed by the lowercase letter 'c' - immediately follow

RE: <*.secret>

2002-01-15 Thread marcus_holland-moritz
This is called file globbing and returns a list of all files matching the csh-pattern '*.XX'. See 'perldoc -f glob' for details. -- Marcus | -Original Message- | From: yun yun [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, January 15, 2002 2:03 PM | To: [EMAIL PROTECTED] | Subject: <*.

RE: regular expression help

2002-01-22 Thread marcus_holland-moritz
Try: s/\s+\(locked\)// The parens are meta-symbols in regexes and need to be escaped if you want to match them. The above will additionally make sure that the blanks before (locked) are also removed. HTH, Marcus | -Original Message- | From: David Samuelsson (PAC) [mailto:[EMAIL PROTE

RE: perl & matlab?

2002-01-25 Thread marcus_holland-moritz
| Can Perl call the function in matlab? Or if there are | some api which enable use to matlab's abundent | graphics function in perl programming? I think this is possible. However, I'm pretty sure it's a bit of work. You will need to write an XS interface module for Perl that allows you to call r

RE: perl & matlab?

2002-01-25 Thread marcus_holland-moritz
| Can Perl call the function in matlab? Or if there are | some api which enable use to matlab's abundent | graphics function in perl programming? Reading through your original post again makes me realize that it's graphics functions you're aiming at. I fear you won't be able to produce graphical