fabpreso/func.py

11 lines
135 B
Python
Raw Normal View History

2013-02-09 19:13:35 -08:00
from fabric.api import run, cd
2013-01-24 18:30:11 -08:00
2013-01-24 19:03:49 -08:00
2013-01-24 18:30:11 -08:00
def hello():
run("ls")
2013-02-09 19:13:35 -08:00
def rb_test():
with cd('/tmp/'):
run('pwd')
run('ls')