Skip to content

Instantly share code, notes, and snippets.

@hmasato
Created May 10, 2013 06:01
Show Gist options
  • Save hmasato/5552668 to your computer and use it in GitHub Desktop.
Save hmasato/5552668 to your computer and use it in GitHub Desktop.
[Maya, Win] _sendToClipboard.mel
proc _sendFileToClipboard(string $filename)
{
string $fn = $filename;
if($fn=="") return;
if(!`filetest -r $fn`) return;
system("shell clip < \""+$fn+"\"");
}
_sendToClipboard("C:/TEMP/test.txt");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment