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

https://github.com/terminalstudio/dartssh2_cli

This repo contains the source code for dartssh and dartsftp command line tools.
https://github.com/terminalstudio/dartssh2_cli

dartlang sftp ssh

Last synced: 21 days ago
JSON representation

This repo contains the source code for dartssh and dartsftp command line tools.

Awesome Lists containing this project

README

        

This repo contains the source code for `dartssh` and `dartsftp` command line tools.

## Install

```sh
# Install the `dartssh` command.
dart pub global activate dartssh2_cli

# Then use `dartssh` as regular `ssh` command.
dartssh [email protected]

# Example: execute a command on remote host.
dartssh [email protected] ls -al

# Example: connect to a non-standard port.
dartssh [email protected]:

# Transfer files via SFTP.
dartsftp [email protected]
```

> If the `dartssh` command can't be found after installation, you might need to [set up your path](https://dart.dev/tools/pub/cmd/pub-global#running-a-script-from-your-path).