Fabien Costantini wrote:
> Knowing you mike, there must be a good reason for that statement,
> but I recognize I don't understand that one.
> What I tested and verified (which must be incomplete) is that on 3 
> targets(mac,win32,linux)
> the construction in the script "'$myvar'" is expanded as $myvar and not the 
> content of the variable.

 From Mac OS X's /bin/sh:

     sh-3.2$ foo=bar
     sh-3.2$ echo $foo
     bar
     sh-3.2$ echo "$foo"
     bar
     sh-3.2$ echo "'$foo'"
     'bar'

-- 
______________________________________________________________________
Michael Sweet, Easy Software Products           mike at easysw dot com
_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to