in reply to Using ":raw" layer in open() vs. calling binmode()
On my system the first two snippets return stdio instead of unix perlio.This is perl, v5.8.6 built for darwin-thread-multi-2level
Does that work for you?open (FH, '<:raw:perlio', '/dev/null'); print(PerlIO::get_layers(FH)); # --> unix perlio
|
|---|