Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/icexin/netio
A remote command execution tool without annoying shell escape
https://github.com/icexin/netio
golang remote-execution ssh
Last synced: about 1 month ago
JSON representation
A remote command execution tool without annoying shell escape
- Host: GitHub
- URL: https://github.com/icexin/netio
- Owner: icexin
- License: mit
- Created: 2017-06-26T08:11:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-19T09:12:47.000Z (over 5 years ago)
- Last Synced: 2024-06-20T01:50:31.363Z (6 months ago)
- Topics: golang, remote-execution, ssh
- Language: Go
- Size: 79.1 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Overview
A ssh like remote command execution tool without annoying shell escape
# Install
`go get github.com/icexin/netio`
# Usage
server:
`netio -s -addr=:9000`
client:
`netio -addr=:127.0.0.1:9000 -t top`
More usage see `netio -h`
# Profile
``` bash
$ cat ~/.netiorc
addr="127.0.0.1:9000"
```Then you can use netio client without `-addr` flag.