Re: CGP/1.0 specification

luotonen@ptsun00.cern.ch (Ari Luotonen)
From: luotonen@ptsun00.cern.ch (Ari Luotonen)
Date: Thu, 18 Nov 93 13:22:20 +0100
Message-id: <9311181222.AA01645@ptsun03.cern.ch>
To: www-talk@dxcern.cern.ch
Subject: Re: CGP/1.0 specification

>  * Secondly to test if environment is unlimited in length 
>  * I did
>  * setenv TEST `ls -l`
>  * on a 450 file directory. That took an extremly long time in tcsh (an 
>  * equivalent for csh). You might try this to see how long it takes!

That's probably because you have filename globbing on so tcsh goes
through that stuff searching and matching any wildcards it finds.
With "set noglob":

	set FOO=`cat big.html`

completes in less than 2 seconds with a 100K file (on my Sparc IPX
with no heavy load).  In Bourne shell it's even faster.


-- Cheers, Ari --