def run(command, remote=True): ''' Run a command using fabric. ''' if remote: return _run(command) else: return _local(command)