delorie.com/archives/browse.cgi | search |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs> |
Sender: | cygwin-owner AT cygwin DOT com |
Mail-Followup-To: | cygwin AT cygwin DOT com |
Delivered-To: | mailing list cygwin AT cygwin DOT com |
Message-Id: | <5.1.0.14.2.20020606224316.01bfadc8@pop3.cris.com> |
X-Sender: | rrschulz AT pop3 DOT cris DOT com |
Date: | Thu, 06 Jun 2002 22:53:29 -0700 |
To: | Gerald Reno <grenoml AT yahoo DOT com>, cygwin AT cygwin DOT com |
From: | Randall R Schulz <rrschulz AT cris DOT com> |
Subject: | Re: Cygwin 1.3.10 read command and W2K |
In-Reply-To: | <20020606200157.84987.qmail@web14405.mail.yahoo.com> |
Mime-Version: | 1.0 |
Gerald, [ The usual disclaimer: None of this is Cygwin specific. ] When you use a pipe, the shell forks. In your example, the read command was occurring in a forked sub-shell, and hence the side-effect on $var is not seen in the shell that reads and interprets the pipeline you gave (and subsequent commands). Compare the output of this pipeline: % echo foo |read bar; echo $bar % With that of this one: % echo foo | (read bar; echo $bar) foo % Depending on the complexity of your script, this construct might work: % bar="$(echo foo)" % echo $bar foo Randall Schulz Mountain View, CA USA At 13:01 2002-06-06, Gerald Reno wrote: >I have scripts with reads that are failing. Why doesn't "echo text | read >var; echo $var" work? var is just empty. Doesn't 'read' default to >stdin? All other commands seem to be working only read is having problem. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |