https://github.com/ailopez-o/42barcelona-minitalk
Minitalk with bonus / Finished / 125 scored
https://github.com/ailopez-o/42barcelona-minitalk
42barcelona 42cursus 42projects bonus minitalk minitalk42 unix
Last synced: 2 months ago
JSON representation
Minitalk with bonus / Finished / 125 scored
- Host: GitHub
- URL: https://github.com/ailopez-o/42barcelona-minitalk
- Owner: ailopez-o
- Created: 2022-09-22T14:33:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-07T21:00:54.000Z (over 2 years ago)
- Last Synced: 2025-02-12T18:46:46.811Z (4 months ago)
- Topics: 42barcelona, 42cursus, 42projects, bonus, minitalk, minitalk42, unix
- Language: C
- Homepage:
- Size: 1.9 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 42-Minitalk
![]()
![]()
![]()
![]()
![]()
## Server - Client
The purpose of this project is to code a small data exchange program using UNIX signals.
![]()
## Making programs
Cloning the repo
```bash
git clone --recursive https://github.com/ailopez-o/42Barcelona-Minitalk.git
```
To compile client & server```bash
$ make
```
To compile client```bash
$ make client
```
To compile server```bash
$ make server
```## How to use
Execute Server
```bash
$ ./server
```
![]()
Execute client with the Server PID and a string to send
```bash
$ ./client server_pid "String to send"
```
```bash
$ ./client server_pid "$(cat file.txt)"
```
```bash
$ ./client server_pid -g file.txt
```
![]()
![]()