Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!lll-crg!nike!schoch From: schoch@nike.UUCP (Steve Schoch) Newsgroups: net.unix Subject: Re: setenv problem in C-shell Message-ID: <562@nike.UUCP> Date: Wed, 3-Sep-86 12:54:47 EDT Article-I.D.: nike.562 Posted: Wed Sep 3 12:54:47 1986 Date-Received: Wed, 3-Sep-86 21:02:28 EDT References: <3454@brl-smoke.ARPA> <1427@tektools.UUCP> Organization: NASA Ames Research Center, Moffett Field, Calif. Lines: 14 Summary: eval `tset` does unset noglob In article <1427@tektools.UUCP>, jerryp@tektools.UUCP (Jerry Peek) writes: > > set noglob; eval `tset ... ` > > Not just that! Don't forget to do "unset noglob" -- otherwise, the shell > won't expand filename wildcard characters afterwards. Do this: > > set noglob; eval `tset ...`; unset noglob That is not necessary. The "tset -s" command prints "unset noglob;" as the last thing it does, and this is evauated correctly by the eval, so you really don't need the "unset noglob" on the command line. Steve Schoch schoch@ames