eval ( en )

Last modification : 2013/01/26 19:16

eval is used to affect the result of an external command to a variable.
For example if you need to get the current working directory try this
msh> eval P pwd
msh> print $P
C:\Temp
eval is an equivalent to backquote
msh> set P=`pwd`