in reply to expect.pm header
$system, used in your header way at the top is never defined at all, let alone before it is used.
You need to re-evaluate how you are doing things. It looks like you want to create a header down after you define @systems, then iterate over that through each one and use something like
"---$system[N]---\n".Also,
use warnings;
...might have been useful, but I didn't test. Always use it.
-stevieb
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: expect.pm header
by amagana (Acolyte) on Apr 06, 2015 at 21:19 UTC | |
by stevieb (Canon) on Apr 06, 2015 at 21:31 UTC |