These are my solutions to the projects from the book: "Operating Systems: Three Easy Pieces (OSTEP)"
-
Unix utilities
- wcat: variant of the UNIX tool cat, reads a file and print it's content.
- wgrep: variant of the UNIX tool grep, searches in a file line by line for the occurrence of a search term and prints the line if it's found.
- wzip: compresses a text file using the RLE compression algorithm.
- wunzip: uncompresses text files compressed with the RLE compression algorithm.****
-
Others
- shell: simple shell (called wish) written in C.