板友们好
我在一个 web script 写一个执行 shell 指令
cmd=subprocess.Popen(['./create_tunnel.sh','%s'%tunnel_name],stdout=subprocess.PIPE, stderr=subprocess.PIPE)
它是可以把 tunnel_name 变量当作 create_tunnel.sh 的参数丢进去
但我要怎么丢两个参数阿? 试过
cmd=subprocess.Popen(['./create_tunnel.sh','%s %s'%tunnel_name %tunnel_name1]
没有成功
谢谢。