Skip to content

Instantly share code, notes, and snippets.

@hmasato
Last active December 27, 2015 18:18
Show Gist options
  • Select an option

  • Save hmasato/7368270 to your computer and use it in GitHub Desktop.

Select an option

Save hmasato/7368270 to your computer and use it in GitHub Desktop.
[Maya, MEL, Win] _system
proc string _system(string $cmd)
{
string $tmp = "";
string $dir = `pwd`;
if(match("^//", $dir)!="") $tmp=getenv("TEMP");
if($tmp == "") return( system($cmd) );
chdir($tmp);
string $ret = system($cmd);
chdir($dir);
return($ret);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment