in reply to Re^2: getting error "Use of uninitialized value $lines in concatenation (.) or string at line 6
in thread getting error "Use of uninitialized value $lines in concatenation (.) or string at line 6

Why did you use }{ between $count++ and die?

The -n switch to perl wraps the entire script in a loop, as follows:

LINE: while (<>) { ... # your program goes here }

So the provided code deparses to this:

LINE: while (defined($_ = <ARGV>)) { $first ||= $_; $last = $_; ++$count; } { die "ERROR found $count lines. Need >5" unless $count > 5; print "FIRST:$first\nLAST:$last\n"; }

Note how the "butterfly operator" (that's }{) is used to add some extra bit of code that'll be run after the loop that -n adds finishes.

When i tried to run this code, I got following error message: syntax error at -e line 1, near "||=" syntax error at -e line 1, near "unless >"

As my brother said above: "Change to single quotes for Linux", i.e.:

perl -ne '$first ||=$_; $last=$_; $count++}{die qq(ERROR found $count +lines. Need >5) unless $count>5; print qq(FIRST:$first\nLAST:$last\n) +' YOUR-FILE-NAME-here.txt

This is to keep your shell from messing with the script by interpreting special characters.

  • Comment on Re^3: getting error "Use of uninitialized value $lines in concatenation (.) or string at line 6
  • Select or Download Code

Replies are listed 'Best First'.
Re^4: getting error "Use of uninitialized value $lines in concatenation (.) or string at line 6
by perlfan (Parson) on Jul 03, 2014 at 11:51 UTC