Very simple implementations of some UNIX utilities in C for self-educational purposes.
catcat_1.c: Very naivecatimplementation without flags nor usinggetopt. Emits compiler warnings.
cpcp_1.c: Very naivecpimplementation without flags nor usinggetopt. Can only copy one file to one destination. Does not emit compiler warnings.
rmrm_1.c: Very naivermimplementation without flags nor usinggetopt. Can only remove one file. Does not emit compiler warnings with-Wallflag.
findfind_1.c: Very naivefindimplementation without flags nor usinggetopt. Emits compiler warnings. Receives a path that will be traversed recursively and a substring to look for in each result. Case dependent.
- Remember that
#include "file.c"could load functions from external files.