How to use wildcards with Envoy
问题 I'm trying to run this command through KennethReitz's Envoy package: $ sqlite3 foo.db 'select * from sqlite_master' I've tried this: r = envoy.run("sqlite3 foo.db 'select * from sqlite_master'") sqlite3: Error: too many options: "*" and this: r = envoy.run(['sqlite3', 'foo.db', 'select * from sqlite_master']) AttributeError: 'NoneType' object has no attribute 'returncode' additional quoting & escaping doesn't seem to help. Any suggestions? FYI: This is what I had to do for now: cmd = "sqlite3