On Sep 19, 2006, at 11:07, Thomas Keller wrote: > 23: if ( $#ARGV < 0 ) { > 24: die $usage; > 25: } Use this, instead: 23: unless( @ARGV ) { 24: die $usage; 25: } It's easier to read, too. Best, David