public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
  • [parent not found: <10:42:13>]
  • [parent not found: <12:12:26>]
  • [parent not found: <10:05:43>]
  • [parent not found: <13:07:28>]
  • [parent not found: <14:20:27>]
  • [parent not found: <;>]
    * Problem with Windows .lnk files treated as Symlinks
    @ 2001-05-03  6:27 Martin Oberhuber
      2001-05-03  7:49 ` Larry Hall (RFK Partners, Inc)
      0 siblings, 1 reply; 212+ messages in thread
    From: Martin Oberhuber @ 2001-05-03  6:27 UTC (permalink / raw)
      To: 'cygwin@cygwin.com'
    
    Hello,
    
    since cygwin-1.3, Windows *.lnk files are treated as UNIX
    symbolic links by default.
    
    We rean into a problem where we wanted to use the "cp" 
    command to copy a Windows *.lnk shortcut to a new place.
    This worked alright with previous cygwin versions, but
    with 1.3, the file referenced was copied instead of the
    *.lnk file. 
    
    One problem with this behavour is that additional attributes
    of the *.lnk file (like parameters passed to the program
    referenced, or an icon associated) are not copied in that 
    case.
    
    Looking at options of the CYGWIN environment variable as
    well as options of the "cp" command, I found NO WAY of
    copying the *.lnk file instead of the file referenced!
    Even "cp -d", which is documented to preserve symbolic
    links (and works like that on Linux) did not work.
    Setting CYGWIN=nowinsymlinks only affects link creation,
    but not link interpretation by "cp".
    
    Taking into account that Windows Shortcuts are more than
    UNIX symbolic links, and that thus a one-to-one mapping
    is always problematic, I would suggest the following to
    preserve a clean environment as well as backward
    compatibility:
    
    1.) Only *.lnk files created by Cygwin (with the special
        cygwin header), should be treated as symbolic links when 
        they are read. If the *.lnk file is not a "cygwin *.lnk"
        with its special header, it should be treated as a plain 
        file.
        If this is not observed, important information may be lost 
        (also think about programs like tar that cannot reproduce 
        an exact image of the original file system if *.lnk files 
        are not completely copied).
    
    2.) If CYGWIN=nowinsymlinks is set, not only symbolic link
        creation but also symbolic link interpretation should
        be "classical", i.e. *.lnk files are treated as files.
    
    Please keep me informed on your plans regarding this issue.
    
    Thanks in advance,
    Martin Oberhuber
    
    --
    Want to unsubscribe from this list?
    Check out: http://cygwin.com/ml/#unsubscribe-simple
    
    ^ permalink raw reply	[flat|nested] 212+ messages in thread
    * KSH is pdksh
    @ 2001-01-24 13:36 Galen Boyer
      2001-01-24 14:35 ` Larry Hall (RFK Partners, Inc)
                       ` (2 more replies)
      0 siblings, 3 replies; 212+ messages in thread
    From: Galen Boyer @ 2001-01-24 13:36 UTC (permalink / raw)
      To: cygwin
    
    After reviewing some archives, I find that pdksh is cygwin's
    version of ksh.  Is this still available and where do I get it?
    My c:/cygwin/bin doesn't contain it.
    
    Thanks.
    -- 
    Galen Boyer
    Fingers and toes, fingers and toes, forty things we share.
    Forty one if you include, the fact that we don't care.
    
    
    _________________________________________________________
    Do You Yahoo!?
    Get your free @yahoo.com address at http://mail.yahoo.com
    
    
    --
    Want to unsubscribe from this list?
    Check out: http://cygwin.com/ml/#unsubscribe-simple
    
    ^ permalink raw reply	[flat|nested] 212+ messages in thread
    [parent not found: <Jeffrey>]
    * Re: new install of cygwin with pdksh doesn't work
    @ 2000-12-20 14:48 Earnie Boyd
      2000-12-20 14:59 ` David M. Karr
      0 siblings, 1 reply; 212+ messages in thread
    From: Earnie Boyd @ 2000-12-20 14:48 UTC (permalink / raw)
      To: David M. Karr, cygwin
    
    --- "David M. Karr" <dkarr@tcsi.com> wrote:
    > 
    > I'm sure this has something to do with line endings, but I don't
    > understand what has to be done.
    > 
    
    Then use setup to install Cygwin on the other machine.  It does all that needs
    to be done for those who don't know what to do.
    
    Cheers,
    
    =====
    Earnie Boyd
    mailto:earnie_boyd@yahoo.com
    
    ---         < http://earniesystems.safeshopper.com >         ---
    --- Cygwin: POSIX on Windows < http://gw32.freeyellow.com/ > ---
    ---   Minimalist GNU for Windows < http://www.mingw.org/ >   ---
    
    __________________________________________________
    Do You Yahoo!?
    Yahoo! Shopping - Thousands of Stores. Millions of Products.
    http://shopping.yahoo.com/
    
    --
    Want to unsubscribe from this list?
    Check out: http://cygwin.com/ml/#unsubscribe-simple
    
    ^ permalink raw reply	[flat|nested] 212+ messages in thread
    * new install of cygwin with pdksh doesn't work
    @ 2000-12-20 14:41 David M. Karr
      2000-12-20 15:36 ` Christopher Faylor
      0 siblings, 1 reply; 212+ messages in thread
    From: David M. Karr @ 2000-12-20 14:41 UTC (permalink / raw)
      To: cygwin
    
    I have a relatively recent install of cygwin, along with pdksh-2.14.
    I have scripts that reference "/bin/ksh" that work fine.
    
    Today I've been setting up these tools on another PC, and now when I
    execute "ksh", I get the following:
    
        ksh: /cygdrive/d/dmk/.bashrc[1]: syntax error: `in^M' unexpected
    
    I'm sure this has something to do with line endings, but I don't
    understand what has to be done.
    
    In case it matters, here are my simple ".bashrc", ".bash_profile", and
    ".bashvars" files:
    
    ----------.bashrc: cut here------
    case $- in
    	 *i*)
    		  if [ "$TERM" = "dumb" ] ; then
    				alias ls="ls -aFC --color"
    		  else
    				alias ls="ls -aFC";
    		  fi
    		  PS1="[\H;] "
    
    		  . $HOME/.bash_profile
    		  ;;
    esac
    ----------.bashrc: cut here------
    
    ----------.bash_profile: cut here------
    umask 2
    
    . $HOME/.bashvars
    ----------.bash_profile: cut here------
    
    ----------.bashvars: cut here------
    export HISTSIZE=64
    unset HISTFILE
    
    export ENV=$HOME/.bashrc
    
    export PAGER=less
    
    export MPAGE="-4 -b Letter -H -X -c -f -z lp"
    
    export PATH="$PATH:.://d/dmk/lisp/jde-2.1.8/lisp"
    
    export PATH="$PATH:/usr/local/bin"
    
    export TP_OPTS="-m DRAFT -i --n -C --f --F -S 2 -4"
    
    function dospathinbash () {
    	echo $(cygpath -w $1) | sed -e 's,\\,/,g'
    }
    export -f dospathinbash
    ----------.bashvars: cut here------
    -- 
    ===============================================================================
    David M. Karr     ; dkarr@tcsi.com  ; w:(425)487-8312 ; TCSI & Best Consulting
    Software Engineer ; Unix/Java/C++/X ; BrainBench CJ12P (#12004)
    
    
    --
    Want to unsubscribe from this list?
    Check out: http://cygwin.com/ml/#unsubscribe-simple
    
    ^ permalink raw reply	[flat|nested] 212+ messages in thread
    * [ANN] PW32 the (alternative) Posix-over-Win32 layer 0.3.0 released
    @ 2000-03-13  5:16 Paul Sokolovsky
      2000-03-13  8:05 ` Chris Faylor
      0 siblings, 1 reply; 212+ messages in thread
    From: Paul Sokolovsky @ 2000-03-13  5:16 UTC (permalink / raw)
      To: cygwin
    
    Hello cygwin,
    
          I would like to introduce to gnu-win32 community new (yet
    another) POSIX "emulation" layer. It is product of some thoughts and
    ideas that were spoken, and sufficiently criticized, on cygwin list.
    Standard description follows:
    
    "PW32 is implementation of (subset of) POSIX/Unix API for Win32 systems. Its main
    concerns are efficiency and full platform coverage, including adequate support for low-end
    Win9x systems. PW32 is based on DJGPP's runtime library by DJ Delorie. PW32 is licensed
    under LGPL."
    
          PW32 is only month on public, but before that it was more than
    year in development. That means it'd already has something to show,
    though of course it's far from being complete. Also, as I hinted above,
    it's based on solutions that might be considered questionable, if not
    orthodox. Even besides that, I claim that their sole purpose is to get
    rid of mean, chore problems plaguing existing implementations, and to
    get efficient implementation. So, I took steps to describe these
    traits, and provide means of coping with them and integrating with
    "native" environment.
    
    0.3.0 is second public and first 'full-fledged' (as for alpha)
    release. Changes include:
    
    * Many bugfixes.
    * Tested and runs on 9x and NT. On 95, problems known and identified,
    with workarounds provided.
    * Binaries provided: build environment based on gcc-2.95.2-1-mingw32
    (courtesy of Mumit Khan), ash, fileutils, textutils, sed, grep,
    sh-utils, diffutils, make.
    * Updated documentation.
    
      Also, PW32 is currently in active development, for example, now
    two serious problems with 0.3.0 had been fixed (and available from CVS).
    
    
    PW32 is hosted on SourceForge, http://pw32.sourceforge.net/
    
    Place to discuss PW32 is mingw32 mailing list,
    http://www.egroups.com/list/mingw32
    
    
    
    --
    Paul Sokolovsky, IT Specialist
    http://www.brainbench.com/transcript.jsp?pid=11135
    
    
    
    --
    Want to unsubscribe from this list?
    Send a message to cygwin-unsubscribe@sourceware.cygnus.com
    
    ^ permalink raw reply	[flat|nested] 212+ messages in thread
    * uudecode?
    @ 1999-01-31 23:52 John Cooper
      1999-01-31 23:52 ` uudecode? Michael Hirmke
      1999-01-31 23:52 ` uudecode? Corinna Vinschen
      0 siblings, 2 replies; 212+ messages in thread
    From: John Cooper @ 1999-01-31 23:52 UTC (permalink / raw)
      To: gnu-win32
    
    Can anyone point me to a reliable version of the command line
    uudecode.exe/uuencode.exe utilities for NT 4.0?
    
    Thanks,
    
        --- John
    
    -
    For help on using this list (especially unsubscribing), send a message to
    "gnu-win32-request@cygnus.com" with one line of text: "help".
    
    ^ permalink raw reply	[flat|nested] 212+ messages in thread
    * long long vs long
    @ 1998-07-21  1:55 Graham Murray
      1998-07-22  6:17 ` Harry Broomhall
                       ` (4 more replies)
      0 siblings, 5 replies; 212+ messages in thread
    From: Graham Murray @ 1998-07-21  1:55 UTC (permalink / raw)
      To: 'gnu-win32@cygnus.com'
    
    This is probably a silly question, but rather than having long long for
    64 bit, why was long not made 64bit? The standard (AFAIK) states that
    short <= int <= long.  So, it should be possible for long to be 64 bit
    rather than 32. This would give a simple progression from 8bit chars to
    64bit longs.
    -
    For help on using this list (especially unsubscribing), send a message to
    "gnu-win32-request@cygnus.com" with one line of text: "help".
    
    ^ permalink raw reply	[flat|nested] 212+ messages in thread
    * Re: Why text=binary mounts    (Re: Gnu-win32 (b18), coolview    and NTEmacs)
    @ 1998-01-07  5:29 Earnie Boyd
      1998-01-07 12:35 ` Scott Blachowicz
                       ` (2 more replies)
      0 siblings, 3 replies; 212+ messages in thread
    From: Earnie Boyd @ 1998-01-07  5:29 UTC (permalink / raw)
      To: sab; +Cc: gnu-win32
    
    >From: Scott Blachowicz <sab@seanet.com>
    >Date: 06 Jan 1998 11:25:43 -0800
    >
    [snip]
    >So, why IS it that the coolview code requires text=binary mode mounts
    >anyways?
    
    Let me remind you that the purpose of the cygnus gnu-win32 project is to 
    port UNIX code.  Most of the UNIX world programs choke on the \r\n 
    combination.  Therefore text=binary is the easiest solution.
    
    >-- 
    >Scott Blachowicz                <sab@seanet.com>
    
    
    -        \\||//
    ---o0O0--Earnie--0O0o----
    -earnie_boyd@hotmail.com-
    ------ooo0O--O0ooo-------
    
    Check out these great gnu-win32 related sites:
    ftp://ftp.cygnus.com/pub/gnu-win32/latest/           (ftp site)
    http://www.cygnus.com/pubs/gnupro/                   (Comercial Page)
    http://www.cygnus.com/misc/gnu-win32/                (Project Page)
    http://www.cygnus.com/ml/gnu-win32                   (Mail Archives)
    http://www.itribe.net/virtunix/winhelp-man-pages/    (HTML Man Pages)
    http://www.lexa.ru/sos                               (Sergey Okhapkin)
    ftp://www.lexa.ru/pub/domestic/sos/                (Sergey's ftp site)
    http://www.fu.is.saga-u.ac.jp/~colin/gcc.html        (Colin Peters)
    http://www.xraylith.wisc.edu/~khan/software/gnu-win32/ (Mumit Khan)
    http://gnu-win32.paranoia.ru                         (Chuck Bogorad)
    ftp://ftp.deninc.com/pub                       (Den Internet Services)
    
    
    ______________________________________________________
    Get Your Private, Free Email at http://www.hotmail.com
    -
    For help on using this list (especially unsubscribing), send a message to
    "gnu-win32-request@cygnus.com" with one line of text: "help".
    
    ^ permalink raw reply	[flat|nested] 212+ messages in thread
    [parent not found: <Suhaib>]
    [parent not found: <Larry>]
    [parent not found: <Earnie>]
    [parent not found: <Corinna>]
    [parent not found: <john>]
    [parent not found: <Michael>]
    [parent not found: <Markus>]
    [parent not found: <Benjamin>]
    [parent not found: <Mumit>]
    [parent not found: <Sebastien>]
    [parent not found: <Bob>]

    end of thread, other threads:[~2001-11-25 18:01 UTC | newest]
    
    Thread overview: 212+ messages (download: mbox.gz / follow: Atom feed)
    -- links below jump to the message on this page --
         [not found] <23>
         [not found] ` <Feb>
         [not found]   ` <97>
         [not found]     ` <18:00:22>
         [not found]       ` <PST_2@ccm.hf.intel.com>
    1997-03-19 18:13         ` Understanding program startup DG Ellis
         [not found]           ` <19>
         [not found]             ` <Mar>
         [not found]               ` <05,>
         [not found]                 ` <2000>
         [not found]                   ` <at>
         [not found]                     ` <12:47PM>
    2000-03-05 10:05                       ` What is a "forward slash" Michael Hirmke
         [not found]                     ` <08:00:42AM>
         [not found]                       ` <-0800>
    2000-03-12 16:21                         ` various packages Michael Hirmke
         [not found]                         ` <(PST)>
    2000-12-20 16:39                           ` new install of cygwin with pdksh doesn't work Earnie Boyd
    2000-12-20 17:36                             ` David M. Karr
    2000-12-20 18:18                               ` Chris Abbey
    2000-12-21  6:27                           ` Earnie Boyd
    2000-12-21  8:33                             ` David M. Karr
    2000-12-21 12:17                             ` David M. Karr
    2000-12-21 12:48                               ` Larry Hall (RFK Partners, Inc)
    2000-12-21 13:06                           ` Earnie Boyd
    2001-01-03  9:56                             ` David M. Karr
    2001-01-03 14:03                               ` Larry Hall (RFK Partners, Inc)
         [not found]                   ` <14:50:18>
         [not found]                     ` <+0000>
         [not found]                       ` <(CT0)>
    2000-12-20 19:38                         ` Earnie Boyd
    2000-12-20 22:54                           ` David M. Karr
    2000-12-21  6:40                             ` Markus Hoenicka
    2000-12-21  8:48                               ` David M. Karr
    2000-12-21 10:46                                 ` Larry Hall (RFK Partners, Inc)
    2000-12-21 16:10                               ` Jari Aalto+mail.emacs
    2000-12-21 16:22                                 ` Corinna Vinschen
    2000-12-21 16:32                                   ` Christopher Faylor
    2000-12-21 16:31                                 ` Christopher Faylor
    2000-12-22  6:29                                 ` Markus Hoenicka
    2000-12-23  7:03                                   ` Jari Aalto+mail.linux
         [not found]                       ` <(GMT)>
    2001-02-11  8:18                         ` QT chris
    2001-02-11 15:48                           ` QT Dr. Volker Zell
    2001-02-12  7:02                             ` QT Jonathan Fosburgh
    2001-02-12  9:36                               ` QT Dr. Volker Zell
    2001-02-14 17:05                                 ` QT - request for bind cygwin patch file Kevin Wright
    1997-03-19 23:02         ` Understanding program startup Jim Balter
         [not found]     ` <10:42:13>
    1997-03-26 17:32       ` Re[2]: Linking with .LIB files David W Palmer
    1997-03-25 12:55         ` David W Palmer
         [not found]           ` <01>
    1997-03-26  9:44         ` Nick Ing-Simmons
    1997-03-27  0:57         ` Jim Balter
         [not found]     ` <12:12:26>
    1997-03-31 12:13       ` Re[2]: " David W Palmer
    1997-03-27 15:33         ` Jim Balter
    1997-03-27 20:59         ` Re[2]: " David W Palmer
         [not found]           ` <17>
         [not found]     ` <10:05:43>
    1997-04-01 10:31       ` DLL to lib*.a? David W Palmer
    1997-02-23 10:38         ` Re[2]: globbing feature in 17.1 when not under bash issue (b DG Ellis
    1997-03-21 10:46         ` Re[2]: Understanding program startup DG Ellis
    1997-03-24 10:32         ` Windows API calls that don't work? (Was RE: Stupid stupi David W Palmer
    1997-04-02  7:11         ` DLL to lib*.a? kunglao
         [not found]     ` <13:07:28>
    1997-04-08 18:15       ` Re[2]: env command does not work correctly DG Ellis
         [not found]     ` <14:20:27>
    1997-07-17 14:20       ` Installing b18 usertools Brett A Carter
         [not found] <;>
         [not found] ` <from>
         [not found]   ` <"Michael>
         [not found]     ` <Hirmke">
         [not found]   ` <dialup-62.215.274.4.dial1.stamford>
         [not found]     ` <([62.215.274.4]>
    2001-11-25 18:01       ` >>>ADVERTISE TO 11,759,000 PEOPLE FREE! FreeEmailSoftware1
    2001-05-03  6:27 Problem with Windows .lnk files treated as Symlinks Martin Oberhuber
    2001-05-03  7:49 ` Larry Hall (RFK Partners, Inc)
    2001-05-03 10:46   ` Christopher Faylor
      -- strict thread matches above, loose matches on Subject: below --
    2001-01-24 13:36 KSH is pdksh Galen Boyer
    2001-01-24 14:35 ` Larry Hall (RFK Partners, Inc)
    2001-01-24 15:33   ` David Feustel
    2001-01-24 15:30 ` Corinna Vinschen
    2001-01-24 15:39 ` David M. Karr
    2001-01-24 17:25   ` Earnie Boyd
    2001-01-24 19:07     ` Mumit Khan
    2001-01-25  8:25       ` David M. Karr
    2001-01-25  8:34         ` Larry Hall (RFK Partners, Inc)
    2001-01-25 12:52           ` Matthew Smith
    2001-01-25 13:32             ` Earnie Boyd
    2001-01-25 14:31               ` Newlib's non-posix'ness [Re: KSH is pdksh] Mumit Khan
    2001-01-25 16:17                 ` Earnie Boyd
    2001-01-25 21:23                 ` Christopher Faylor
    2001-01-25  7:51   ` KSH is pdksh Galen Boyer
    2001-01-25 13:01     ` Galen Boyer
         [not found] <Jeffrey>
         [not found] ` <C.>
         [not found]   ` <Fried"'s>
         [not found]     ` <message>
         [not found]       ` <of>
         [not found]         ` <"Fri,>
         [not found]           ` <11>
         [not found]         ` <"Thu,>
         [not found]         ` <"Mon,>
         [not found]         ` <"Tue,>
         [not found]         ` <"Wed,>
         [not found]           ` <22>
         [not found]           ` <07>
         [not found]             ` <Jan>
         [not found]               ` <2001>
         [not found]                 ` <16:18:12>
         [not found]               ` <1998>
         [not found]                 ` <11:08:42>
         [not found]                   ` <-0400>
         [not found]                 ` <14:02:23>
         [not found]                   ` <+0200>
    1998-10-23 12:54                     ` Which of cygwin32's design goals does ascii file conversion fulfil? David Fox
    1998-10-24 10:29                       ` Larry Hall
    1998-10-26  5:47                         ` Olle Olsson
    1998-10-28  0:40                           ` Geoffrey Noer
    1998-10-25  1:41                       ` Darren Cook
    2000-03-13 15:34                     ` [ANN] PW32 the (alternative) Posix-over-Win32 layer 0.3.0 released Michael Hirmke
    2000-03-13 15:52                       ` Chris Faylor
    2000-03-14 13:06                         ` Michael Hirmke
         [not found]                 ` <16:34:34>
         [not found]                   ` <-0500>
         [not found]                     ` <Daniel>
         [not found]                     ` <DJ>
    1998-12-11 14:39                     ` help on compiling perl/ nt with cygwin. gnu c lib missing john z
    1998-12-12  9:41                       ` Michael Hirmke
    1998-12-13  5:55                       ` Peter Moulder
         [not found]                       ` <3.0.5.32.19981213122803.00863b20@pciii>
    1998-12-18 20:36                         ` Peter Moulder
    1999-02-02  5:27                     ` OpenGL and glut with B20.1 Suhaib M. Siddiqi
    1999-02-02  5:44                       ` Levon Saldamli
         [not found]                         ` < 7wsocoudi1.fsf@sandra.lysator.liu.se >
    1999-02-02  6:18                           ` Theodore Jump
    1999-02-28 23:02                             ` Theodore Jump
    1999-02-03  5:02                           ` unsubscribe john z
    1999-02-28 23:02                             ` unsubscribe john z
    1999-02-28 23:02                         ` OpenGL and glut with B20.1 Levon Saldamli
    1999-02-28 23:02                       ` Suhaib M. Siddiqi
    2001-01-04 13:09                     ` First Cygwin Installation Hough, Louis F
    2001-01-04 13:12                       ` DJ Delorie
    2001-01-04 13:21                         ` David M. Karr
    2001-01-04 13:39                           ` Larry Hall (RFK Partners, Inc)
    2001-01-04 13:55                             ` David M. Karr
    2001-01-04 14:14                               ` Larry Hall (RFK Partners, Inc)
    2001-01-04 14:41                               ` Earnie Boyd
    2001-01-04 14:55                                 ` David M. Karr
    2001-01-04 15:10                                   ` Christopher Faylor
    2001-01-05 12:52                     ` Drive with cygwin moved from "E:" to "D:", how to fix? David M. Karr
    2001-01-05 13:00                       ` DJ Delorie
    2001-01-05 13:40                         ` David M. Karr
    2001-01-05 13:46                           ` Larry Hall (RFK Partners, Inc)
    2001-01-05 14:04                             ` David M. Karr
    2001-01-05 13:50                       ` Gerrit P. Haase
    2001-01-06 11:30                       ` Quick setup script "taxidermy.pl" Soren Andersen
    2001-01-11 14:23                     ` NTEmacs shell/CygWin: should control-C work? Daniel Barclay
    2001-01-11 15:00                       ` David M. Karr
    2001-01-12 11:48                         ` Daniel Barclay
    2001-01-12 11:54                           ` David M. Karr
    2001-01-12 12:30                             ` Larry Hall (RFK Partners, Inc)
    2001-01-12 12:43                               ` David M. Karr
    2001-01-12 13:12                                 ` Daniel Barclay
    2001-01-12 13:13                                 ` Larry Hall (RFK Partners, Inc)
    2001-01-12 13:06                             ` Daniel Barclay
    2001-01-12 13:26                           ` Ehud Karni
    2001-01-12 13:57                             ` Larry Hall (RFK Partners, Inc)
    2001-01-16 11:14                               ` Daniel Barclay
    2001-01-16 11:27                                 ` Larry Hall (RFK Partners, Inc)
    2001-01-18  8:21                                   ` Daniel Barclay
    2001-01-18  8:27                                     ` Larry Hall (RFK Partners, Inc)
    2001-01-18 16:47                                       ` Dr. Volker Zell
         [not found]                 ` <21:45:26>
         [not found]                   ` <-0700>
         [not found]                     ` <(PDT)>
    2000-04-26  6:56                       ` problems with less Michael Hirmke
    2000-05-09  7:42                         ` John S Cooper
    2000-05-09  9:08                           ` Chris Faylor
    2000-05-09 10:25                             ` Bob McGowan
         [not found]               ` <1999>
         [not found]                 ` <21:28:12>
         [not found]                   ` <-0600>
         [not found]                     ` <(CST)>
         [not found]                       ` <Pine.SO4.4.05.9902222125010.25431-100000@scooby.simple.dallas.tx.us>
         [not found]                         ` <d9btilixqo.fsf@han.cs.umn.edu>
    1999-02-22 22:41                           ` [PB] "no acceptable ld" : cywin32 pb, way to handle win path ? Sebastien Barre
    1999-02-23  3:06                             ` Gary V. Vaughan
    1999-02-28 23:02                               ` Gary V. Vaughan
    1999-02-28 23:02                             ` Sebastien Barre
         [not found]                 ` <19:42:30>
         [not found]                   ` <+0100>
    1999-02-23 17:15                     ` strange mount behaviour Sebastien Barre
    1999-02-24  0:08                       ` Levon Saldamli
         [not found]                         ` < 7wsobw8gql.fsf@sandra.lysator.liu.se >
    1999-02-24  0:59                           ` Sebastien Barre
    1999-02-28 23:02                             ` Sebastien Barre
    1999-02-28 23:02                         ` Levon Saldamli
    1999-03-03 13:25                         ` Michael Hirmke
    1999-03-31 19:45                           ` Michael Hirmke
    1999-02-28 23:02                       ` Sebastien Barre
    2001-01-16  0:08                     ` Cygwin commands crashes after ssh login Christer.H.Jansson
    2001-01-16  4:41                       ` Erdely, Michael
    2001-01-16  5:32                         ` Corinna Vinschen
    2001-01-16  5:49                           ` Erdely, Michael
    2001-01-16  6:08                           ` Henry S. Thompson
    2001-01-16  7:38                             ` Larry Hall (RFK Partners, Inc)
    2001-01-16  7:56                             ` Wei Ku
    2001-01-16  8:02                               ` Christopher Faylor
    2001-01-17  4:04                               ` Corinna Vinschen
    2001-01-16  9:11                           ` Egor Duda
    2001-01-16  9:28                             ` Christopher Faylor
    2001-01-17  5:20                               ` Egor Duda
    2001-01-17  5:29                                 ` Christopher Faylor
    2001-01-17  3:57                             ` Corinna Vinschen
    2001-01-17  5:20                               ` Egor Duda
    2001-03-15 13:33                     ` tcsh Win2000: command line editing does not work Brad Barber
    2001-03-15 14:15                       ` Corinna Vinschen
    2001-03-22  8:01                         ` Kazuhiro Fujieda
    2001-03-22 10:08                           ` Brad Barber
    2001-03-22 10:27                             ` Kazuhiro Fujieda
    2001-03-22 18:49                           ` Christopher Faylor
         [not found]                       ` <m3elvyr90a.fsf@master.athome>
    2001-03-16  6:59                         ` Brad Barber
    2000-12-20 14:48 new install of cygwin with pdksh doesn't work Earnie Boyd
    2000-12-20 14:59 ` David M. Karr
    2000-12-20 14:41 David M. Karr
    2000-12-20 15:36 ` Christopher Faylor
    2000-12-20 15:51   ` David M. Karr
    2000-12-20 16:19     ` Christopher Faylor
    2000-12-20 16:59       ` David M. Karr
    2000-03-13  5:16 [ANN] PW32 the (alternative) Posix-over-Win32 layer 0.3.0 released Paul Sokolovsky
    2000-03-13  8:05 ` Chris Faylor
    2000-03-13  9:03   ` Dr. Volker Zell
    2000-03-13 10:05   ` Re[2]: " Paul Sokolovsky
    2000-03-13 15:01   ` Michael Hirmke
    2000-03-13 15:05     ` Chris Faylor
    1999-01-31 23:52 uudecode? John Cooper
    1999-01-31 23:52 ` uudecode? Michael Hirmke
    1999-01-31 23:52   ` uudecode? John Cooper
    1999-01-31 23:52     ` uudecode? Glenn Spell
    1999-01-31 23:52     ` uudecode? root
    1999-01-31 23:52       ` uudecode? John Cooper
    1999-01-31 23:52         ` uudecode? Pierre A. Humblet
    1999-01-31 23:52       ` uudecode? John Cooper
    1999-01-31 23:52         ` uudecode? John Cooper
    1999-01-31 23:52 ` uudecode? Corinna Vinschen
    1998-07-21  1:55 long long vs long Graham Murray
    1998-07-22  6:17 ` Harry Broomhall
    1998-07-22 13:57 ` Michael H. Warfield
    1998-07-23  6:15   ` Harry Broomhall
    1998-07-23 13:02   ` Matthew Donadio
    1998-07-23 15:30   ` Timothy Writer
    1998-07-24 12:58     ` Matthew Donadio
    1998-07-25  0:08     ` Larry Hall
    1998-07-25  1:22       ` Timothy Writer
    1998-07-24 12:58   ` Benjamin Riefenstahl
    1998-07-22 13:57 ` Nicholas R LeRoy
    1998-07-22 16:50 ` Michael Weiser
    1998-07-23  8:33   ` Brian Osman
    1998-07-27 14:23     ` Michael Weiser
    1998-07-23  8:33   ` Harry Broomhall
    1998-07-23 19:01     ` Michael Weiser
    1998-07-24  5:20       ` Harry Broomhall
    1998-07-25  0:08         ` Mumit Khan
    1998-07-26  9:27           ` sjm
         [not found]           ` <9807261625.AA18550.cygnus.gnu-win32@frodo>
    1998-07-28  0:57             ` Christopher G. Faylor
    1998-07-27 14:23         ` Michael Weiser
    1998-07-25  1:22       ` Timothy Writer
    1998-07-28  0:57         ` Michael Weiser
    1998-07-24  0:25     ` massimo morara
    1998-07-22 17:12 ` Andrew Sharp
    1998-01-07  5:29 Why text=binary mounts (Re: Gnu-win32 (b18), coolview and NTEmacs) Earnie Boyd
    1998-01-07 12:35 ` Scott Blachowicz
    1998-01-07 14:50 ` Fergus Henderson
    1998-01-07 22:33 ` Jeffrey C. Fried
    1998-01-08 10:46   ` Scott Blachowicz
    1998-01-09 11:09     ` Larry Hall (RFK Partners Inc)
    1998-01-12 20:11       ` Scott Blachowicz
    1998-01-16  2:56         ` Benjamin Riefenstahl
    1998-01-10  6:19     ` Why text=binary mounts (Re: Gnu-win32 (b18), coolview and NTE Michael Hirmke
    1998-01-11 15:55       ` Larry Hall
         [not found] <Suhaib>
         [not found] ` <M.>
         [not found] <Larry>
         [not found] <Earnie>
         [not found] <Corinna>
         [not found] <john>
         [not found] <Michael>
         [not found] ` <H.>
         [not found] <Markus>
         [not found] <Benjamin>
         [not found] <Mumit>
         [not found] <Sebastien>
         [not found] <Bob>
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).