Last active
August 29, 2015 14:14
-
-
Save solebox/3aa2201887407c7bce6e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fabric.api import * | |
# you've got to love them decorators :) | |
@parallel # dont have to be parallel , but might as well use it , wouldnt hurt with only 2 threads :) | |
@hosts('192.168.3.118', '192.168.6.142') | |
def pwd(): | |
run('pwd') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment