Skip to content

QuentinManemla/42sh

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

42sh

Implimenting a Basic Unix Shell Using C.

=================================================== usage: ./42sh

Capabilites:

Piping: SYSTEM CALL: pipe();
PROTOTYPE: int pipe( int fd[2] ); RETURNS: 0 on success -1 on error: errno = EMFILE (no free descriptors)
EMFILE (system file table is full)
EFAULT (fd array is not valid) NOTES: fd[0] is set up for reading, fd[1] is set up for writing

example: "ls-l | cat -e"

About

Implimenting a Basic Unix Shell Using C.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published