python fabric如何将\输入代码分支

python fabric how to input \ into code branch

我想使用 fabric 控制我的远程主机

我想输入shell命令行到代码分支

例子:

shell代码:

root@debian:~# cd /root

面料:

con.run('cd /root')

我想输入这样的 shell 代码 :

root@debian:~# cd \
root@debian:~# /root

如何编写我的面料代码

我有一个shell命令有一个长参数,所以我需要代码分支

使用列表理解。

lists = [['a','b'],['c','d','e']]
print([j for i in lists for j in i])

或使用 itertools

import itertools
print(list(itertools.chain.from_iterable(lists)))

输出:

['a', 'b', 'c', 'd', 'e']