RE: yet another regex question

2004-12-14 Thread Nemana, Satya V
Gilbert, I wrote an awk script to do this in the past. I need to search for it now. Clue is to add 3 lines in the body of the awk. (line-1) use if statement and set a flag to 1 and "skip 1", if pattern1 matches with $0 and then (line-2) reset the flag to 0 and "skip 1", if the pattern2 matches with

RE: yet another regex question

2004-12-14 Thread Nemana, Satya V
rge.net/ /t >-Original Message- >From: Gilbert Rebhan [mailto:[EMAIL PROTECTED] >Sent: Tuesday, December 14, 2004 6:30 PM >To: Ant Users List >Subject: Re: yet another regex question > >Hi, > >Nemana, Satya V wrote: >> Gilbert, I wrote an awk script to do t

RE: CVS command with Ant in IntelliJ

2005-01-28 Thread Nemana, Satya V
Try to take care of this PATH at the system environment level. Make sure cvs is found is the $PATH ot %PATH% when you open a DOS cmd or Unix shell. This will fix PATH on IntelliJ like tools, as the system environment is pre-set. -Satya -Original Message- From: Lieve Van den Heuvel [mailto:

RE: How to remotely copy files from remote server to remote server?

2005-01-31 Thread Nemana, Satya V
"man scp" says -- "Any file name may contain a host and user specification to indicate that the file is to be copied to/from that host. Copies between two remote hosts are permitted." I am sure, scp should work, but only problem is it prompts for passwords, but there is a way to work around to av

cc-task: how to fix /F /Y flags of msdev .net compiler options in ant

2005-02-02 Thread Nemana, Satya V
I am trying to port current windows builds into ANT, by copying the MSDEV .NET solution file (.sln) contents into ANT's build.xml file, using ant-utils and cc-task packages, as downloaded from sourceforge.net I could fix some trivial flags like /D but I could not fix flags like /F /Y Following /D

RE: How to escape the quotes characters in a string?

2005-03-08 Thread Nemana, Satya V
Here are some examples using quot and colon, as I used in the past, while playing with cpptasks.jar and ant-contrib.jar to automate the MSDEV Visua Studion .NET c++ builds using the Ant, to make it platform-independent. Following below constructs arguments as /YX"stdafx.h" /MACHINE:X86 etc Note: (