Skip to content

Commit 0334989

Browse files
committed
runw.pyw script for running generic commands without cmd window
1 parent 204ba58 commit 0334989

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

utorrent/runw.pyw

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import sys
2+
import subprocess
3+
4+
# execute command (and hide cmd window)
5+
subprocess.run(sys.argv[1:], creationflags=0x08000000)

0 commit comments

Comments
 (0)