Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 541 Bytes

File metadata and controls

10 lines (7 loc) · 541 Bytes

Linux_utils

Implementation of the four popular Linux utilities (cat, cp, echo, mv, and pwd.)

I went for a minimal approach with basic error checking. Some funtionalities are not supported (i.e. cp src dir/ and mv src dir/ which have the same meaning as cp src dir/src and mv src dir/src). Flags are not supported (i.e. cp -r and so on.)

All the C source files can be compiled normally using gcc. Make sure you have the necessary glibc packages.

This repository is intended for learning reasons. Future updates are coming!