Bob Ackerman wrote: > > i get error when trying this line. macosx. perl 5.6.1. > > perl -e"for (55..75) { print chr($_) }" > > it says: > Unmatched ". > > problem with '$_'. shell must be looking at it and messing it up. > how do i get the '$' through tcsh shell?
Since $_ is the default argument to chr(): perl -e"for (55..75) { print chr }" John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]