Xref: utzoo comp.unix.questions:19219 comp.lang.perl:183 Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!usenet.ins.cwru.edu!mephisto!psuvax1!schwartz From: schwartz@cs.psu.edu (Scott Schwartz) Newsgroups: comp.unix.questions,comp.lang.perl Subject: Separator frobs (was Re: regexp question) Message-ID: Date: 20 Jan 90 08:00:09 GMT References: <1307@island.uu.net> <6849@jpl-devvax.JPL.NASA.GOV> Organization: Penn State University Computer Science Lines: 8 Larry writes: >$/ = "\0"; # line sep is something non-existent You know, I've always kind of disliked doing that. Suppose your file contains all possible byte values 0..255? Something loses. Maybe doing something like ``undef /;'' to make ``$/'' undefined could be used to tell perl to just read the whole thing. (Undefined is different from the null string, right?)