简体   繁体   中英

How do I execute a complex shell find command from Python?

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?

subprocess.call(["find", ".", "-exec", "touch", "{}", ";"])

cwd="." Is not needed as it is the default.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM