Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 589 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 589 Bytes

LibSSH.jl

docs-stable docs-dev codecov

A Julia wrapper for libssh. Sneak peak:

import LibSSH as ssh

session = ssh.Session("foo.com")
ssh.userauth_password(session, "password")
close(session)

See the docs for more information.