标签: python linux python-3.x cut
在使用os.system()函数时,我在python中遇到了EOL错误。 以下是代码行生成错误:
os.system("cat subdomains.txt | cut -d'"' -f1 ")
基本上,我正在尝试使用分号[“](双引号)修改ouutput字符串
答案 0 :(得分:0)
如果您需要在带有引号的"中写一个",则可以将其写为\"
"
\"
"cat subdomains.txt | cut -d'\"' -f1 "