Skip to content

Instantly share code, notes, and snippets.

@motoishmz
Last active November 22, 2017 05:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save motoishmz/1ce23d9d534721903b34930b4e22accf to your computer and use it in GitHub Desktop.
Save motoishmz/1ce23d9d534721903b34930b4e22accf to your computer and use it in GitHub Desktop.
touchdesigner note - tiny scripts
import os
os.system("taskkill /im emptyExample.exe")
from subprocess import Popen
file = "C:/Users/motoishmz/path/to/emptyExample.exe"
Popen( [ file ] )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment