Path: utzoo!attcan!uunet!mcsun!hp4nl!star.cs.vu.nl!maart From: maart@cs.vu.nl (Maarten Litmaath) Newsgroups: comp.unix.questions Subject: Re: Bourne shell oddity Message-ID: <7257@star.cs.vu.nl> Date: 8 Aug 90 15:34:27 GMT References: <9008071535.AA01487@stc06.CTD.ORNL.GOV> Sender: news@cs.vu.nl Reply-To: maart@cs.vu.nl (Maarten Litmaath) Organization: VU Dept. of Computer Science, Amsterdam, The Netherlands Lines: 42 In article <9008071535.AA01487@stc06.CTD.ORNL.GOV>, de5@STC06.CTD.ORNL.GOV (SILL D E) writes: )... )#!/bin/sh )foo=bar )while true )do ) if [ $foo = bar ] ) then ) foo=baz ) echo foo=${foo} ) break ) fi )done