NEWBIE ALERT...
I have a script that renames filenames. It has some basic math operations associated with it too.
The script ***runs perfectly*** in its intended task and all variables have values before operations occur on those variables. However I still get error messages (see below) complaining about uninitialized value which is untrue. Any idea why?
---------------
Use of uninitialized value in division (/)...
Use of uninitialized value in multiplication (*)...
I have a script that renames filenames. It has some basic math operations associated with it too.
The script ***runs perfectly*** in its intended task and all variables have values before operations occur on those variables. However I still get error messages (see below) complaining about uninitialized value which is untrue. Any idea why?
---------------
Use of uninitialized value in division (/)...
Use of uninitialized value in multiplication (*)...
Comment