X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-0.0 required=5.0 tests=BAYES_00,FROM_LOCAL_NOVOWEL,RCVD_NUMERIC_HELO,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org To: cygwin AT cygwin DOT com From: ttjqryfbndgdx Subject: Re: Additional carriage return added by cygwin commands to DOS text files Date: Wed, 7 Oct 2009 15:53:14 +0000 (UTC) Lines: 49 Message-ID: References: <4ACCB085 DOT 3070304 AT freesbee DOT fr> <4ACCB4AE DOT 8030409 AT freesbee DOT fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit User-Agent: Loom/3.14 (http://gmane.org/) X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Vincent Rivière freesbee.fr> writes: > > > I experienced the same issue with the "cat" command, and unfortunately I > > didn't find any transparent solution > > However a non-transparent hack is to use first a text filter then pipe > its output to the original command. The filter opens the file in > textmode so it gets rid of the CR. Then, as expected, no CR are present > in the pipe. Then normal CRs are added in the resulting file when it is > written on disk. > > The "more" command is a good choice for such a filter, because its pager > functionality is disabled when it writes to a pipe, so it acts as a > simple repeater in textmode: exactly what we need. > > $ more test1 |grep -U -E 'a|b' > test2 > $ xxd test2 > 0000000: 6161 610d 0a62 6262 0d0a aaa..bbb.. > > The result is correct. > Thanks that could be a solution. Note that I don't have the issue with cat. bash-3.2$ cat test1 > test2 bash-3.2$ xxd test2 0000000: 6161 610d 0a62 6262 0d0a aaa..bbb.. I don't have it with sort used alone : bash-3.2$ /usr/bin/sort test1 > test2 bash-3.2$ xxd test2 0000000: 6161 610d 0a62 6262 0d0a aaa..bbb.. But get it when using sort in a pipe with cat : bash-3.2$ cat test1 | /usr/bin/sort > test2 bash-3.2$ xxd test2 0000000: 6161 610d 0d0a 6262 620d 0d0a aaa...bbb... But using more instead of cat solves the issue : bash-3.2$ more test1 | /usr/bin/sort > test2 bash-3.2$ xxd test2 0000000: 6161 610d 0a62 6262 0d0a aaa..bbb.. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple