引用python中的字符串

时间:2017-04-18 08:52:16

标签: python shell sed

我正在尝试将shell脚本编写到python脚本中以翻译.sql文件的语法。

我写了这个:

import os
sqlFile = raw_input("Type the name of your .sql file: ")

os.system('dos2unix '+ sqlFile)    
os.system(""" sed -i 's/dbo//g' """ + sqlFile)

我有这个错误:

sed: -e expression #1, char 14: unknown option to `s'

我尝试过很多东西,包括单曲",双"",还有\'等...但它不起作用我对这个问题持怀疑态度。因为如果我需要将这个字符放入shell脚本中,那就很难区分了....没关系它没有用。 我很确定有人有解决方案,但我尝试从网络上找到的每一个解决方案都没有。

感谢您的帮助和时间!

0 个答案:

没有答案