- or download this
perl -wle '$n="";$f="abc";$n=split//,$f;print for @_'
- or download this
perl -wle '$n=""; $f="abc"; $n=()=split//,$f; print for @_'
- or download this
while(<>) {
$n = split;
warn "processing $n tokens\n";
&process; # implicitly takes @_
}