import sys
from fabric.api import *
env.hosts = ['my.host.com']
env.user = 'myuser'
env.password = 'mypassword'
# env.shell = '/bin/bash -l -c'
def deploy():
x = run("cd /srv/proj/")
print x.__dict__
我正在尝试登录到远程 shell 并执行这个简单的cd
命令。虽然它显示没有错误
[my.host.com] run: cd /srv/proj/
{'succeeded': True, 'return_code': 0, 'failed': False, 'command': 'cd /srv/proj/', 'stderr': '', 'real_command': '/bin/bash -l -c "cd /srv/proj/"'}
但是当我在 cd 命令之后执行run('ls')
时,它什么也不打印,但肯定有文件。 那么这里发生了什么。 除此之外,我在执行手动设置命令时遇到问题(我的意思是 .bashrc 文件中的别名)。 织物使用/bin/bash -l -c ...
. 我怎样才能克服这个障碍。
我正在使用 ubuntu 14.04
PS:它和os.chdir不一样
你可以试试with cd
:
def deploy():
with cd("/srv/proj/"):
x = run("ls")
print(x)