On 06 Oct 2002 16:06:31 +0300, Shlomo Yona wrote: > > This is all great - but the result of <> also gets into $_ > or at least should be implicitly. > > I wonder why <> is not assigned to the $_ which get printed by the -p The result of <> is assigned to $_ in one very special case, inside while (<>), and nowhere else. Regards, Mikhael.