in reply to Re^2: BoSelecta __DATA__ and rewind.
in thread BoSelecta __DATA__ and rewind.

blackadder,
Perhaps this will help:
#!/usr/bin/perl use strict; use warnings; my $pos = tell DATA; print while <DATA>; seek DATA, $pos, 0; print uc while <DATA>; __DATA__ one two three four

Cheers - L~R

Replies are listed 'Best First'.
Re^4: BoSelecta __DATA__ and rewind.
by blackadder (Hermit) on Oct 04, 2004 at 14:28 UTC
    Hey "Limbic~Region", Thanks buddy.
    Blackadder