Re: MSYS - why does sending relative posix paths
"Alister Hood" <alister.hood-CysrACQw//[email protected]> Mon, 22 Aug 2011 13:13:15 +1200
| Newsgroups | gmane.comp.gnu.mingw.msys |
|---|---|
| Message-ID | <AAFD34025E073F47B5F892A97BAFFCAA5D08FA@aklserver02.Synergine.local> |
> Date: Wed, 17 Aug 2011 09:48:45 +0000 > From: Greg Chicares <[email protected]> > Subject: Re: [Mingw-msys] MSYS - why does sending relative posix paths > to some windows applications fail? > To: [email protected] > Message-ID: <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > On 2011-08-17 05:04Z, Alister Hood wrote: > > > > I was wondering if anyone could tell me why the first three of the > > commands below all work if I run them in the msys shell, but if I run > > the fourth explorer gives me the message "The path '../msys/test' does > > not exist or is not a directory." > > > > $ notepad .\\msys.bat > > $ notepad ./msys.bat > > $ explorer .\\msys > > $ explorer ./msys > > Try it in CMD.EXE: > > Microsoft Windows XP [Version 5.1.2600] > (C) Copyright 1985-2001 Microsoft Corp. > > C:\Documents and Settings\Arktos>f: > F:\>cd msys > > These all work: > > F:\msys\1.0>notepad .\\msys.bat > F:\msys\1.0>notepad ./msys.bat > F:\msys\1.0>explorer ..\..\msys > > But these fail: > > F:\msys\1.0>explorer ..\\..\\msys > The path '..\\..\\msys' does not exist or is not a directory. > > F:\msys\1.0>explorer ../../msys > The path '../../msys' does not exist or is not a directory. > > > I've always had trouble with the path handling in msys, and it seems to > > come back to this. I presume it isn't a problem with my specific setup? > > It's reproducible without running the MSYS shell. Almost all msw programs > recognize '/' as a path separator as well as '\'; it seems that 'explorer' > does not (and doesn't like duplicated '\\' either). Ah, right. I assumed that msys converted paths in posix form to normal windows form, including changing the slashes... but clearly I was wrong. I also thought that explorer accepted the full posix notation if using absolute paths, but I guess instead of `explorer /c/windows` I must have actually been using `start /c/windows`, which doesn't help much if I want to use the /select switch for explorer. But this script does almost everything I think I need: #!/bin/sh # show a file in windows explorer explorer `cmd //c echo $@|sed -e 's#\\/#\\\\#g'`,/select Thanks, Alister ------------------------------------------------------------------------------ uberSVN's rich system and user administration capabilities and model configuration take the hassle out of deploying and managing Subversion and the tools developers use with it. Learn more about uberSVN and get a free download at: http://p.sf.net/sfu/wandisco-dev2dev