Skip to content

Instantly share code, notes, and snippets.

@AndrewHazelden
Last active December 12, 2015 14:39
Show Gist options
  • Select an option

  • Save AndrewHazelden/37909d5ae57301fed680 to your computer and use it in GitHub Desktop.

Select an option

Save AndrewHazelden/37909d5ae57301fed680 to your computer and use it in GitHub Desktop.
A MEL command for checking what the operating system's environment path variable is when launching child processes using system() on Windows.
// Windows
system("echo %PATH%");
// Mac & Linux
system("echo $PATH");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment