# the only need of this module file is to ease binmode'ing # for STDIN, STDOUT, so one could write # perl -mb -we "'do-something, and STDxxx are in binmode'" sub BEGIN { binmode STDIN; binmode STDOUT; } 1;