Code Monkey home page Code Monkey logo

gossh's Introduction

GoSSH

GoSSH is a Go package that provides a simple and convenient way to establish SSH connections and perform various operations on remote servers.

Installation

To install GoSSH, use the following command:

go get -u github.com/treeforest/gossh

Usage

Here is an example of how to use GoSSH to connect to a remote server and perform SSH operations:

package main

import (
	"fmt"
	"github.com/treeforest/gossh"
)

func main() {
	// Connect to the remote server
	ssh, err := gossh.Connect("example.com", 22, "username", "password")
	if err != nil {
		fmt.Println("Failed to connect:", err)
		return
	}
	defer ssh.Close()

	// Run a command on the remote server
	output, err := ssh.Run("ls -l")
	if err != nil {
		fmt.Println("Failed to run command:", err)
		return
	}

	fmt.Println("Command output:", string(output))
}

Features

  • Connect to a remote server using SSH
  • Run commands on the remote server
  • Upload and download files using SFTP
  • Execute commands with sudo privileges

License

GNU General Public License v3.0


This README document provides a brief overview of the GoSSH package and its usage. Feel free to update and customize it according to your specific needs.

gossh's People

Watchers

 avatar

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.