某字符串要在paramiko远程命令中使用
我的字符串格式是string = 'aaaaa \'this is single quote\' \\"this is double quote\\"'
想保留的双引号用两个反斜线转义以保留我希望在字符串中保留单引号和双引号 因此在最外层用单引号''引起来
在paramiko中使用时client.exec_commond('echo "%s" > aa.log' % string)