open IN, "<&", $ARGV[0] or die $!; binmode IN; my $s = ; print "line: $s"; print "Attempt to read twice:"; $s = ; print "line: $s"; close IN;