Last active
November 22, 2017 05:45
-
-
Save motoishmz/1ce23d9d534721903b34930b4e22accf to your computer and use it in GitHub Desktop.
touchdesigner note - tiny scripts
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
import os | |
os.system("taskkill /im emptyExample.exe") |
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
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