标签: python telnet
我有bash在python代码中运行tn.write()
tn.write("a=$(lr 2>logp.txt) \n")
当我运行它时会出错
syntax error: `a=$' unexpected
答案 0 :(得分:1)
您不能直接在bash中运行python代码。 您需要执行以下操作:
python -c 'tn.write("a=$(lr 2>logp.txt) \n")'
您将遇到其他错误,但不在您的问题范围内。