ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-dev: Re: [Wireshark-dev] [Wireshark-commits] rev 20491: /trunk/docbook/ /trunk/docboo

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Thu, 18 Jan 2007 16:26:18 -0800

On Jan 18, 2007, at 4:17 PM, Luis Ontanon wrote:

oops that would be
$(PERL) -ae 'chomp; print "$_\015";' <infile >outfile

...and the same for the others.

Also:


# this "DOSifies" eols
${PERL} -ae 'chomp; print "$_\012\015";'

Presumably you meant

	${PERL} -ae 'chomp; print "$_\015\012";'


# this "Unixizes" eols
${PERL} -ae 'chomp; print "$_\015";'

	${PERL} -ae 'chomp; print "$_\012";'

# this "OldMacIzes" eols
${PERL} -ae 'chomp; print "$_\012";'

	${PERL} -ae 'chomp; print "$_\015";'

(CR is octal 15, LF is octal 12).