Like this:

On Tuesday, May 7, 2002, at 12:48  PM, Merlin, The Mage wrote:

> I understand that, but in that case how would you run on this:
>
> ������� (*a,*b,*c)=(\1,\2,\3);
> ������� for ($a,$b,$c) {
> ������� ������� $_++;
> ������� ������� print $_;
> ������� }


perl -e '(*a,*b,*c)=(\1,\2,\3); for ( @x = ($a,$b,$c) ) { $_++; print }'

A fixed original post:
perl -e 'for ( @x = (1,2,3,4,5,6,7,8,9,10) ) { $_++; print }'

_Sx____________________
  ('>    -Sx- IUDICIUM
  //\   Have Computer -
  v_/_    Will Hack...

   "iudicium ferat"

Reply via email to