You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minishell is a lightweight Unix shell implementation in C that supports essential functionalities like command execution, redirections, pipes, environment variable expansion, and built-in commands. It handles interactive user input, signal processing, and command history, mimicking basic shell behavior.
Minitalk – Inter-process communication using signals in C. This project implements a simple client-server messaging system. The client sends messages to the server one bit at a time using Unix signals (SIGUSR1 and SIGUSR2), and the server reconstructs the message.
inter-process communication, using UNIX signals to transmit messages from a client to a server. Explores asynchronous communication using SIGUSR1 and SIGUSR2 signals.