in reply to Re: System Call for various serials in a for loop
in thread System Call for various serials in a for loop

Elbarto,

Those system errors are strange. Are you running under use warnings and use strict?

My guess is that in your real code, $serial is typo'd, perhaps?


Mike
  • Comment on Re^2: System Call for various serials in a for loop

Replies are listed 'Best First'.
Re^3: System Call for various serials in a for loop
by Elbarto (Initiate) on Jun 28, 2007 at 13:45 UTC
    Mike,

    2xYes, 1xNo.

    Theses errors indeed ARE strange,

    i run under use warnings and strict and

    NO, i just triple checked, $serial is not typo'd (i use vim with syntax completion after all, just to avoid these errors (and for comfort reasons :))).
      You have to quote the special chars:
      echo "The # here does not begin a comment." echo 'The # here does not begin a comment.' echo The \# here does not begin a comment. echo The # here begins a comment.