Re: [SQL] Re: SQL Join - MySQL/PostgreSQL difference?

Tom Lane <tgl@sss.pgh.pa.us>

From: Tom Lane <tgl@sss.pgh.pa.us>
To: Brice Ruth <brice@webprojkt.com>
Cc: Michael Fork <mfork@toledolink.com>, Ian Harding <iharding@pakrat.com>, pgsql-general@postgresql.org, pgsql-sql@postgresql.org
Date: 2001-02-07T16:43:11Z
Lists: pgsql-general, pgsql-sql
Brice Ruth <brice@webprojkt.com> writes:
> Is there a simple (unix) command I can run on text files to convert
> cr/lf to lf?

You could strip out CRs entirely with

	tr -d '\015'

			regards, tom lane