If a particular sub will be reading a filehandle and
it needs to use a certain value of $/,
is there a way to set $/ for this filehandle once instead
of using local $/ on each sub invocation?
sub special_read {
my $fh = shift;
local $/ = "<!>"; ## <--- how do avoid this on each call?
<$fh> ;
}