https://github.com/ianchen0119/np-2
https://github.com/ianchen0119/np-2
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ianchen0119/np-2
- Owner: ianchen0119
- Created: 2022-06-18T15:00:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-18T15:01:57.000Z (almost 3 years ago)
- Last Synced: 2025-02-16T22:42:41.821Z (4 months ago)
- Language: C++
- Size: 335 KB
- Stars: 0
- 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
```