file-descriptors
There are 41 repositories under file-descriptors topic.
acln0/rc
A Go package which provides reference counted file descriptors.
josephcheel/42-Minishell
This project involves creating a simple shell with Bash as a reference
mcombeau/get_next_line
get_next_line is a 42 school project meant to teach us how to read from a file descriptor and use static variables.
Cyborg117/File-Descriptors-C
A Small Program in C to Demonstrate the Use of File Descriptors and fcntl.h and sys/stat.h flags and its Relation with UNIX.
Ekkoz897/42cursus_Get_next_line
This is a 42 school project meant to teach us how to read from a file descriptor without knowing it's size before hand making use of static variables.
LeeSinLiang/get_next_line
Read content of file and return by line
MOZGIII/fdswap-go
Swap file descriptors (like bash io redirection, i.e. `exec 1>filename`)
TN19N/get_next_line
read lines from a file descriptor
yrhiba/Get-Next-Line
Reading a line from a fd is way too tedious.
amine-za/Minishell-1337
Minishell is a simple shell created as part of my 1337 (42 Network) studies. It supports basic command execution, pipes, redirections, environment variables, and built-in commands like cd, pwd, echo, and more. It also handles signals (Ctrl-C, Ctrl-D) and offers a history feature.
AnaVolkmann/42_GET_NEXT_LINE
get_next_line is a 42 school project meant to teach us how to read from a file descriptor and use static variables.
antoan02bb/get_next_line
This project is about programming a function that returns a line read from a file descriptor.
karisti/42_gnl
Function that allows you to read content of a file line by line. 42 Madrid cursus project.
kichkiro/get_next_line
May it be a file, stdin, or even later a network connection, you will always need a way to read content line by line. It is time to start working on this function, which will be essential for your future projects.
kyriakos-2004/shared_memory_threads
Implementation for various shared memory and threads problems.
mjorgecruz/42_minishell
The project involves building a basic shell that mimics the behavior of the popular bash shell. It covers fundamental concepts such as process creation, input/output redirection, and signal handling
Mouad-El-Asri/minishell
The objective of this project is to create a simple shell. Yes, my own little shell. I've learned a lot about processes and file descriptors in this project.
reomelo/42Porto-get_next_line
A function that returns a line, ending with a newline, read from a file descriptor.
ruifchaves/SO
Exercícios das Aulas e Projeto desenvolvido no âmbito da UC de Sistemas Operativos
shylysmiling/recvsendfd
Transferring a file descriptor through local socket.
SolarisCode/pipex
This a program that mimics the use of "|" pipe character in Linux/Unix terminals.
ycqexXm/minisHELL
creating a simple shell, your own little bash. learn about processes, file descriptors, signals
ziliolu/42_get_next_line
A function to read a file descriptor line by line
dr8co/simple_shell
A simple UNIX shell implemented in C.
juzoanya/gnl
Get_Next_Line 42 Project reads a line from a file descriptor.
mjorgecruz/42_get_next_line
This project is about programming a function that returns a line read from a file descriptor.
Mouad-El-Asri/ft_printf
In this project I recoded printf function using variadic function. This project is gonna be very useful in my future projects. 📝
Mouad-El-Asri/get_next_line
May it be a file, stdin, or even later a network connection, you will always need a way to read content line by line. In this project I made a function that return a line ended by a new line read in a file descriptor.
Mouad-El-Asri/libft
In this project I have recoded a few functions of the C standard library as well as some other utility functions that I will use on some of my upcoming projects. 📚
Mushigarou/get_next_line
Get_Next_Line() a function that returns a line read from a file descriptor.
pin3dev/42_GetNextLine
A function that reads and returns a single line from a file descriptor, efficiently handling large inputs. This project sharpens skills in dynamic memory allocation, buffer management, and system-level file operations in C programming.
Raxel01/minishell
minishell 42 project.
SolarisCode/get_next_line
This is my own implementation of getline() from C library.
xhelp00/pipex
✅ Pipex reproduces the behaviour of the shell pipe | command in C.
zelhajou/42cursus-get_next_line
A function that reads a file line-by-line