Home : General : Perl Programming :

General: Perl Programming: Re: [Wil] Illegal variable name.: Edit Log

Here is the list of edits for this post
Re: [Wil] Illegal variable name.
Because you haven't enclosed the file names with " " or ' ' perl gives the illegal variable error as it thinks that the file name is supposed to be a variable.

You can't create an array like that - only perl variables can be ($var, $bla), everything else needs to be enclosed by ' ' or " " (or use qw)

So that is the cause. Upgrading perl is a good idea though.

Last edited by:

RedRum: Nov 12, 2001, 1:48 PM

Edit Log: