Coder Social home page Coder Social logo

massh's Introduction

logo

Go Report Card Go Report Card Go Doc

Description

Go package for running Linux distributed shell commands via SSH.

Why?

I wanted to experiment with distributed SSH commands, and provide a functional replacement for the old, stale omnissh repository.

Example:

package main

import "github.com/discoriver/massh"

func main() {
	// Create pointers to config & job
	config := &massh.Config{}
	job := &massh.Job{
		Command: "echo hello world",
	}
	
	config.SetHosts([]string{"host1", "host2"})
	
	err := config.SetPublicKeyAuth("~/.ssh/id_rsa")
	if err != nil {
		panic(err)
	}
	
	config.SetJob(job)
	config.SetWorkerPool(2)
	
        // Make sure config will run
        config.CheckSanity()

	config.Run()
}

Usage:

Get the massh package;

go get github.com/DiscoRiver/massh/massh

Documentation

Notes

Right now you can either user this repo as-is, which provides simple usage, or you can import the massh package and use your own behaviour for building and running the Config.

Output is limited to printing a slice of Results. Additional output processing is required for anything fancy. Result is a struct containing the host, the command, and the output (which includes the newline). This should be enough information for all your basic output needs. No status codes are returned.

When specifying a script, it's contents will be added to stdin, and then the following command will be executed to run it on the remote machine;

cat > outfile.sh && chmod +x ./outfile.sh && ./outfile.sh && rm ./outfile.sh

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.