From: Daniel A. S. <st...@ic...> - 2002-04-08 13:17:18
|
At 12:58 +0200 on 8/4/02, AO...@t-... wrote: > set FILE [glob -directory $DIR *.shlb] > >> {Macintosh HD:Desktop Folder:Otto:TcLib:TcLib_auto:libTcLib_auto834.shlb} glob returns a list! (c.f. man n glob) you want set FILE [lindex [glob -directory $DIR *.shlb] 0] this is not specific to the mac, but it's more common to have spaces in paths on the mac... Cheers, Daniel -- ** Daniel A. Steffen ** "And now to something completely ** Department of Mathematics ** different" Monty Python ** Macquarie University ** <mailto:st...@ma...> ** NSW 2109 Australia ** <http://www.maths.mq.edu.au/~steffen/> |