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.
- Host: GitHub
- URL: https://github.com/terminalstudio/dartssh2_cli
- Owner: TerminalStudio
- License: mit
- Created: 2022-10-09T02:27:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-19T12:00:30.000Z (5 months ago)
- Last Synced: 2025-03-24T12:21:47.999Z (about 1 month ago)
- Topics: dartlang, sftp, ssh
- Language: Dart
- Homepage: https://pub.dev/packages/dartssh2
- Size: 14.6 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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).