Last active
December 12, 2015 14:39
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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