delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2003/09/12/12:36:58

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
From: "Hannu E K Nevalainen \(garbage mail\)" <garbage_collector AT telia DOT com>
To: <cygwin AT cygwin DOT com>
Subject: RE: Find: missing alphabetically last dirtree
Date: Fri, 12 Sep 2003 18:36:18 +0200
Message-ID: <NGBBLLIAMFLGJEOAJCCEOEOKDDAA.garbage_collector@telia.com>
MIME-Version: 1.0
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
In-Reply-To: <20030911233405.GA17461@redhat.com>
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Importance: Normal
Note-from-DJ: This may be spam

------=_NextPart_000_0002_01C3795C.C150B570
Content-Type: text/plain;
	charset="us-ascii"
Content-Transfer-Encoding: 7bit

> From: cygwin-owner AT cygwin DOT com [mailto:cygwin-owner AT cygwin DOT com]On Behalf
> Of Christopher Faylor

<SNIP>
> Well, I have a theory on why this is happening and have checked
> in a change
> to deal with it.  I'm generating a snapshot now.  Please give it a try.
>
> cgf


Sorry to report this; the changes you made seems not be enough...
My test script attached, output inline below.

/Hannu E K Nevalainen, B.Sc. EE - 59?16.37'N, 17?12.60'E


The 'find_check' script attached
--
$ rm MSDN*
$ . ./find_check
$ . ./find_check

*** Re-generating DIR output
MSDN1_dirs.dir: done.

*** Re-generating cygcheck output

*** CYGWIN1 status from cygcheck output
  945k 2003/09/01 C:\Program\cygwin\bin\cygwin1-STD.dll - os=4.0 img=1.0
sys=4.0
                  "cygwin1.dll" v0.0 ts=2003/9/1 19:15
  948k 2003/09/12 C:\Program\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2003/9/12 8:49
        DLL identifier: cygwin1
        Shared id: cygwin1S3

*** Re-generating find output

*** convert find output to MS-style paths

*** Re-generating diff output
--- MSDN1_dirs-sw       2003-09-12 18:32:56.000000000 +0200
+++ MSDN1_dirs.sdir     2003-09-12 18:28:58.000000000 +0200
@@ -1,4 +1,3 @@
-p:\
 p:\IE60
 p:\NT4SP
 p:\Program Files
@@ -58,3 +57,807 @@ p:\Program Files\Microsoft Visual Studio
 p:\Program Files\Microsoft Visual Studio .NET\Common7
 p:\Program Files\Microsoft Visual Studio .NET\Common7\IDE
 p:\Samples
+P:\Samples\VC
+P:\Samples\VCSharp
+P:\Samples\VCSharp\General
+P:\Samples\VCSharp\General\CSharpAutomatingOffice
+P:\Samples\VCSharp\General\CSharpAutomatingOffice\AutoWord
+P:\Samples\VCSharp\General\CSharpAutomatingOffice\AutoWord\CreateWordAssemb
ly
+P:\Samples\VCSharp\General\CSharpAutomatingOffice\AutoWord\Example1
+P:\Samples\VCSharp\General\CSharpAutomatingOffice\AutoWord\Example2
+P:\Samples\VCSharp\General\CSharpAutomatingOffice\AutoWord\Example3

<*** SNIP ***>

+P:\Samples\VC\ManagedExtensions\WindowsForms\progressbarctl
+P:\Samples\VC\ManagedExtensions\WindowsForms\tabcontrolctl
+P:\Samples\VC\ManagedExtensions\WindowsForms\trackbarctl
+P:\Samples\VC\ManagedExtensions\WindowsForms\treeviewctl
+P:\Samples\VC\ManagedExtensions\WindowsForms\updownctl
+P:\Samples\VC\OS
+P:\Samples\VC\OS\WindowsXP
+P:\Samples\VC\OS\WindowsXP\GetImage
+P:\Samples\VC\SFL
+P:\Samples\VC\ServerApp

*** Count lines
    863 MSDN1_dirs.sdir
     60 MSDN1_dirs-sw
    923 total


--
Yet another sad "9/11" story
 -> http://cnn.com/2003/WORLD/europe/09/11/sweden.stabbing/index.html

--END OF MESSAGE--

------=_NextPart_000_0002_01C3795C.C150B570
Content-Type: application/octet-stream;
	name="find_check"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
	filename="find_check"

#!/bin/bash=0A=
if [ ! -f MSDN1_dirs.dir ] ;then=0A=
  echo -e "\n*** Re-generating DIR output"=0A=
  cmd /c dir /ad /s /b p: >MSDN1_dirs.dir=0A=
  d2u MSDN1_dirs.dir=0A=
  sort MSDN1_dirs.dir >MSDN1_dirs.sdir=0A=
=0A=
  echo -e "\n*** Re-generating cygcheck output"=0A=
  cygcheck -svr >c_svr-snap.txt=0A=
=0A=
fi=0A=
=0A=
echo -e "\n*** CYGWIN1 status from cygcheck output"=0A=
grep -i cygwin1 c_svr-snap.txt=0A=
=0A=
echo -e "\n*** Re-generating find output"=0A=
find /cygdrive/p -type d >MSDN1_dirs=0A=
=0A=
echo -e "\n*** convert find output to MS-style paths"=0A=
cat MSDN1_dirs | ( read line; while [ ! -z "$line" ]; \=0A=
 do cygpath -w "$line"; read line; done) >MSDN1_dirs-w=0A=
sort MSDN1_dirs-w >MSDN1_dirs-sw =0A=
=0A=
echo -e "\n*** Re-generating diff output"=0A=
diff -iup MSDN1_dirs-sw MSDN1_dirs.sdir >MSDN1_dirs.diff=0A=
head -20 MSDN1_dirs.diff=0A=
echo -e "\n<*** SNIP ***>\n"=0A=
tail MSDN1_dirs.diff=0A=
=0A=
echo -e "\n*** Count lines"=0A=
wc -l MSDN1_dirs.sdir MSDN1_dirs-sw=0A=


------=_NextPart_000_0002_01C3795C.C150B570
Content-Type: text/plain; charset=us-ascii

--
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/
------=_NextPart_000_0002_01C3795C.C150B570--

- Raw text -


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