Skip to content

Commit 6cded58

Browse files
authored
Add files via upload
1 parent beff461 commit 6cded58

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
# 💬 Minitalk
3+
4+
### 💡 Summery:
5+
The purpose of this project is to code a small data exchange program
6+
using UNIX signals.
7+
8+
9+
10+
## 🛠️ Usage
11+
12+
This project is written in C language and thus you must have gcc compiler and some standart C libraries. If you afford them, you also need "libft". You can find in my repositories. All done.
13+
14+
To compile, go to the project path and run:
15+
```javascript
16+
make all
17+
```
18+
To test the program you have to run the "server" and the "client" in different shell tabs with the following:
19+
```javascript
20+
./server
21+
```
22+
This will show your PID to make the client work and will stay waiting to receive a message from the "client"
23+
```javascript
24+
./client "PID" "Your message string"
25+
```
26+
Now you can see "Your message string" on the server window.
27+
## Related
28+
29+
Here are some related projects
30+
31+
[Libft](https://github.com/bilalnrts/libft/tree/main/libft)
32+
33+

0 commit comments

Comments
 (0)