Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/eudoxia0/trivial-ssh

An SSH client library for Common Lisp (Built on libssh2)
https://github.com/eudoxia0/trivial-ssh

Last synced: 3 months ago
JSON representation

An SSH client library for Common Lisp (Built on libssh2)

Lists

README

        

# trivial-ssh

[![Build Status](https://travis-ci.org/eudoxia0/trivial-ssh.svg?branch=master)](https://travis-ci.org/eudoxia0/trivial-ssh)

A simple SSH/SCP library for Common Lisp.

# Usage

## Overview

~~~lisp
(ssh:with-connection (conn "example.com" (ssh:pass "username" "password"))
(ssh:with-command (conn iostream "ls -a")
;; Write or read to/from the iostream
)
(ssh:download-file conn #p"/remote/file" #p"/local/file")
(ssh:upload-file conn #p"/local/file" #p"/remote-file"))
~~~

# License

Copyright (c) 2014-2015 Fernando Borretti ([email protected])

Licensed under the MIT License.