Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com X-Authentication-Warning: smtp1.cern.ch: Host IDENT:root AT pb-d-137-138-206-44 DOT cern DOT ch [137.138.206.44] claimed to be skywalker Message-ID: <399B82AE.38638072@cern.ch> Date: Thu, 17 Aug 2000 08:14:06 +0200 From: "Lassi A. Tuura" Organization: Northeastern University, Boston, USA X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.12-20 i686) X-Accept-Language: en MIME-Version: 1.0 To: cygwin users Subject: Re: Fwd: RE: problems passing -DPARAM="String" from sh References: <20000816204705 DOT 18283 DOT qmail AT web120 DOT yahoomail DOT com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit > #!/bin/sh > SOURCE="-DPARAM=\"This String\" file.cpp" > icl $SOURCE # This line doesn't work. > icl -DPARAM="This String" file.cpp # This line works fine. Do this: #!/bin/sh SOURCE="-DPARAM='This String' file.cpp" eval "icl $SOURCE" ... or more generally: #!/bin/sh SOURCE="-DPARAM='This String' file.cpp" eval "set -- $SOURCE" for arg in "$@"; do # use $arg for something echo "arg: $f" done Hope this helps, //lat -- If you have to ask what jazz is, you'll never know. --Louis Armstrong -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com