Tom Christiansen schreef: > My strong advice to use double-quotes in all situations save those > rare > ones where you wish to wish to counter Perl's own nature is one that > derives in *no* *part* from mere whim or personal preference. Some time ago I came to the same conclusion. This also helped: $ perl -MO=Deparse -wle ' print "abc"; print "abc $_"; print "abc \$_"; ' 2>/dev/null |grep print print 'abc'; print "abc $_"; print 'abc $_'; -- Affijn, Ruud "Gewoon is een tijger."Thread Previous | Thread Next