Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Anchor
getenv
getenv
 

any getenv( string )

Returns the value of an environment variable given its name as the argument.

...


string getenv ( string, number )

Returns the value of an environment variable given its name as the argument. If a second argument (number) is given and the number is zero, the function returns a string, even if the environment variable content looks like a date or a number.

...


Anchor
nice
nice

none nice ( number )

Lower the priority of the macro by calling the nice() system call.


Anchor
putenv

...

putenv

string putenv ( string,string )

Sets the value of an environment variable, given its name as the first argument and its value as the second argument.

...


Anchor
shell
shell

number shell ( ... )

Returns the exit status of the command invoked.

...


Anchor
sleep
sleep

none sleep ( number )

Stops the macro for a given number of seconds

...