Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
Message-Id: <4.3.1.2.20010129234124.022fde88@pop.ma.ultranet.com>
X-Sender: lhall@pop.ma.ultranet.com
X-Mailer: QUALCOMM Windows Eudora Version 4.3.1
Date: Mon, 29 Jan 2001 23:42:21 -0500
To: CyberZombie <CyberZombie@mediaone.net>, cygwin@sourceware.cygnus.com
From: "Larry Hall (RFK Partners, Inc)" <lhall@rfk.com>
Subject: Re: Cygwin and JVMs
Cc: Galen Boyer <galenboyer@yahoo.com>
In-Reply-To: <4.3.1.2.20010129223710.0230fd00@pop.ma.ultranet.com>
References: <5.0.2.1.0.20010129200038.009e3780@pop3.norton.antivirus>
 <4.3.1.2.20010129151657.022fad28@pop.ma.ultranet.com>
 <uae8a9lsa.fsf@yahoo.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"

At 10:40 PM 1/29/2001, Larry Hall (RFK Partners, Inc) wrote:
>At 09:07 PM 1/29/2001, CyberZombie wrote:
> >At 03:18 PM 1/29/2001 -0500, Larry Hall (RFK Partners, Inc) wrote:
> >>At 02:54 PM 1/29/2001, Galen Boyer wrote:
> >> >How does one deal with the classpath's and other environmental
> >> >variables when porting scripts between windows and unix, using
> >> >the cygwin tools of course.
> >> >
> >> >For context, we are using weblogic, ejb, java, toplink and verve.
> >> >We right now have *.cmd files to compile and start the
> >> >application.  Is there a way to *.sh files executing in the
> >> >cygwin environment that can then be ported to the UNIX machine?
> >> >We keep having to deal with the classpath separators and
> >> >drive-letters right now and can't get one script for both
> >> >platforms.
> >>
> >>
> >>If you don't have source available to these components so that they can
> >>be built under Cygwin (thereby eliminating the need to use DOS style paths),
> >>you might find Cygwin's cygpath utility helpful.
> >
> >Try the following:
> >
> ># Convert a Cygwin CLASSPATH when running on Unix
> >
> >if [ -z "$CYGWIN" ]; then CLASSPATH=`echo $CLASSPATH | sed -e 's/;/:/g' -e 's|\\|/|g'`; fi
> >
> ># Convert a non-Cygwin CLASSPATH when running on Cygwin
> >
> >if [ -n "$CYGWIN" ]; then CLASSPATH=`echo $CLASSPATH | sed -e 's/:/;/g' -e 's|/|\\|g'`; fi
> >
> >Note that these don't take into account the DOS driveletter: paths...
>
>
>cygpath does handle DOS driveletter: paths.  Choice your own poison.;-)
                                               ^^^^^^^
                                    Ah, I meant choose.


Larry Hall                              lhall@rfk.com
RFK Partners, Inc.                      http://www.rfk.com
118 Washington Street                   (508) 893-9779 - RFK Office
Holliston, MA 01746                     (508) 893-9889 - FAX



--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

