delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2003/11/26/05:22:32

Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
Delivered-To: mailing list cygwin AT cygwin DOT com
Reply-To: <camacazi AT dodo DOT com DOT au>
From: "c" <camacazi AT dodo DOT com DOT au>
To: "Ronald Landheer-Cieslak" <blytkerchan AT users DOT sourceforge DOT net>,
<cygwin AT cygwin DOT com>
Subject: RE: newby stupid question - cat mutiple files to new piped output files
Date: Wed, 26 Nov 2003 05:22:10 -0500
Message-ID: <NCEKKLNHNDLBNKAHJKLCGEAOCBAA.camacazi@dodo.com.au>
MIME-Version: 1.0
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
In-Reply-To: <20031126115253.GI10265@linux_rln.harvest>
Importance: Normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Note-from-DJ: This may be spam

:O) thankyou kindly
Cameron

-----Original Message-----
From: cygwin-owner AT cygwin DOT com [mailto:cygwin-owner AT cygwin DOT com]On Behalf
Of Ronald Landheer-Cieslak
Sent: Wednesday, November 26, 2003 6:53 AM
To: cygwin AT cygwin DOT com
Subject: Re: newby stupid question - cat mutiple files to new piped
output files


On Wed, Nov 26, 2003 at 04:55:34AM -0500, c wrote:
> Just started to get somewhere until i wanted to cat a heap of csv files
and
> then send the unique records to a new file.
> I thought it couldnt be to hard but now my brain hurts.
> Can anyone help me with a line of code that will do the command below
> '$ cat d:/pc1/filename.csv |uniq > d:/pc1/newfilename.csv'
> but i want it do it repeatidly for every .csv file in that directory?
This has nothing to do with Cygwin, but hey..

for i in /cygdrive/d/pc1/*.csv; do
cat $i | uniq > /cygdrive/d/pc1/newfilename.csv
done

This will work once, because the new files won't be there yet. After that,
the
*.csv will pick up the new files as well..

Take a look at the "Advanced Bash scripting guide" which you can find at
http://tldp.org for info on how to do this kind of thing correctly..

HTH

rlc


--
Dave Mack:	"Your stupidity, Allen, is simply not up to par."
Allen Gwinn:	"Yours is."

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.543 / Virus Database: 337 - Release Date: 11/21/2003

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.543 / Virus Database: 337 - Release Date: 11/21/2003


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019