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文件中的别名)。 fabric使用/bin/bash -l -c ...
。我怎样才能克服这个障碍。
我正在使用ubuntu 14.04
ps:它与os.chdir
不同答案 0 :(得分:1)
您可以尝试with cd
:
def deploy():
with cd("/srv/proj/"):
x = run("ls")
print(x)