To give you the best experience, this site uses cookies. Continuing to use 9bis.net means you agree to our use of cookies.
 

 

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`