This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: rsync and cygwin paths


On Wed, 4 Jun 2003, Randall R Schulz wrote:

> At 10:06 2003-06-04, Igor Pechtchanski wrote:
> >On Wed, 4 Jun 2003, Lapo Luchini wrote:
> >
> > > ...
> > >
> > > Please notice that there is a default prgoramm called "cygpath" that's
> > > really useful to convert path- and file-names between the two version,
> > > and it's not so hard to create "wrapper scripts" to convert them, e.g.
> > > (I copied this long ago from I-don't-remember-where):
> > >
> > > http://cygwin.com/cygwin-ug-net/using-utils.html#CYGPATH
> > >
> > > NEWARGS=""
> > > for arg in $@ ;
> > > do
> > >   if [ -e "${arg}" ]; then
> > >     NEWARGS="${NEWARGS} `cygpath -p -w "$arg"`"
> > >   else
> > >     NEWARGS="${NEWARGS} $arg"
> > >   fi
> > > done
> >
> >Lapo,
> >
> >Note that the above won't work correctly if the program is expected to
> >create the file with a given name...  IMO, there is no way of writing a
> >generic wrapper script without knowing anything about program parameters.
> >     Igor
>
>
> Igor,
>
> Strictly speaking, that's true. Certainly Lapo's script fragment is too
> simple-minded to work in any kind of general setting.
>
> However for many purposes it's feasible to write some simple-minded
> heuristics that make the determination about when and how to apply
> "cygpath." I currently use a BASH script that uses a simple "case"
> statement to paper over the Cygwin / Windows interface for invoking the
> Java 2 SDK tools. The case statement's glob patterns detect whether any
> given argument is (probably) a file name or PATH-like entity and then
> applies cygpath as necessary. It can be fooled, of course, but in
> practice it works fine for me.
>
> Randall Schulz

Randall,

I agree, Java is not too hard.  I believe I've posted the wrapper script
that I used at one point or another.  Certainly the parameters to Java
itself can be recognized exactly.  It's also easy enough to decide that
anything in the program arguments with a '/' in it is a filename, and
convert it accordingly.  WFM (tm).
I was talking about the general case, for an unknown Win32 application.
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton


--
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/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]