I'm trying to execute a complex shell command from inside of python. The naive attempt:
subprocess.call(["find", ".", "-exec touch {} \;"], cwd=".")
is failing. How do I go about doing this?
I'm trying to execute a complex shell command from inside of python. The naive attempt:
is failing. How do I go about doing this? |
|||
|
cwd="." Is not needed as it is the default. |
|||||||||
|