From: rhowarth@sgb.co.uk (Howarth, Richard)
Subject: RE: B18: "sed ** >> a_file", paging error in kernel32.dll in wind
	ow 95 Korean Version
21 Aug 1998 20:19:39 -0700
Message-ID: <71FAE3A39911D211A16800A0C9B39DFD027B3A.cygnus.gnu-win32@sgbntis.sgb.co.uk>
Mime-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
To: gnu-win32@cygnus.com



> -----Original Message-----
> From: michael.mauch@gmx.de [mailto:michael.mauch@gmx.de]
> Sent: 19 August 1998 07:47
> To: "Sung Hoon, Kim (±è¼ºÈÆ)"
> Cc: gnu-win32@cygnus.com
> Subject: Re: B18: "sed ** >> a_file", paging error in kernel32.dll in
> window 95 Korean Version
> 
> 
> Hi Kim,
> 
> > bash> touch a_file
> > bash> for file in $(ls file?); do
> > > sed -n '1,/Copyright/p' file? >> a_file
> > >done
> > 
> > But this makes errors, saying "bash caused paging error in 
> kernel32.dll."
> > What wrong with this?
> 
> Of course it shouldn't cause a paging error, but try the commands:
> 
> for file in file?; do sed -n '1,/Copyright/p' file? >> a_file; done

Shouldn't the sed part of the command be referencing the environment
variable, i.e.
	for file in file?; do sed -n '1,/Copyright/p' $file >> a_file;
done

otherwise the shell will simply expand the second "file?" again and the
output file will contain n copies of the extraction from the first file
(where n is the number of files which match the "file?" pattern). As you
say, it still shouldn't cause a paging error.
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
