/trivial-ssh

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

Primary LanguageCommon Lisp

trivial-ssh

Build Status

A simple SSH/SCP library for Common Lisp.

Usage

Overview

(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 (eudoxiahp@gmail.com)

Licensed under the MIT License.