此处的目标是从网站获取密钥或密码。
在Python中,我尝试了os.system()和subprocess.call([])来运行以下linux命令,但是两种方法都以错误结束。
os.system("curl -s http://example.com | grep ' "Key" : * ' | cut -f1 -d " " | cut -b5- | rev | cut -b9- | rev")
在linux中使用以下命令,效果很好。
PW = 'curl -s http://example.com | grep ' "Key" : * ' | cut -f1 -d " " | cut -b5- | rev | cut -b8- | rev'
我看到的错误是SyntaxError:语法无效,它指向“关键”部分
答案 0 :(得分:3)
您可能只需要转义双引号即可。试试:
os.system("curl -s http://example.com | grep ' \"Key\" : * ' | cut -f1 -d \" \" | cut -b5- | rev | cut -b9- | rev")