https://github.com/ajor/bash-chat
A simple Bash/netcat-based chat application
https://github.com/ajor/bash-chat
Last synced: about 1 year ago
JSON representation
A simple Bash/netcat-based chat application
- Host: GitHub
- URL: https://github.com/ajor/bash-chat
- Owner: ajor
- Created: 2015-07-07T22:42:49.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-08-01T11:51:34.000Z (almost 8 years ago)
- Last Synced: 2025-03-20T21:15:06.599Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 125 KB
- Stars: 29
- Watchers: 6
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
A simple netcat-based chat application, originally made to be used on a local network when the internet connection goes down and other chat services are unavailable.
# Usage
1. Person 1 runs `server.sh`
2. Person 2 connects with `nc a.b.c.d 9999` where a.b.c.d is the IP address of person 1
BashChat defaults to port 9999, but this can be configured on the command line to avoid conflicts and allows running multiple BashChat sessions from the same computer. e.g. Running on port 9998: `server.sh 9998`