https://github.com/ianchen0119/remote-working-ground-server
https://github.com/ianchen0119/remote-working-ground-server
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ianchen0119/remote-working-ground-server
- Owner: ianchen0119
- Created: 2021-11-13T07:53:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-13T07:56:45.000Z (over 3 years ago)
- Last Synced: 2024-12-25T15:26:05.882Z (6 months ago)
- Language: C++
- Size: 335 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remote Working Ground (rwg) Server
## features
- [x] remote shell
- numbered pipe
- multi pipe
- environment variables
- command execution
- [x] chat room
- [x] user pipe## Intro
### user pipe
send the data to the other user:
```sh
ls >2 // send to user #2
```
receive the data from specified user:
```sh
cat <1 // receive from user #1
```### chatroom
- who
- name
set a new name!
```
name Ian
```
- tell
```
tell 2 Hello! // tell to user #2
```
- yell
```
yell Hello, everyone! // broadcast
```
- exit### numbered pipe
Try it!
```sh
ls |2
noop
cat
```