Skip to content

f0lio/minishell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minishell

This is a project from 42 Network Cursus.
The objective is to create a simple bash-like shell. This is a good approach to learn more about processes, signals, file descriptors.. and much more.

Usage:

$ make run

Allowed functions:

malloc() free()
write() open() read()
fork() wait() waitpid() wait3() wait4()
getcwd() chdir() opendir() readdir() closedir()
stat() lstat() fstat()
execve() pipe() dup() dup2()
signal() kill() close() exit()
strerror() errno()

Resources