Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 669 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 669 Bytes

My OSTEP Projects

My implementation of OSTEP projects (Operating Systems: Three Easy Pieces). These projects are part of OSSU's Operating Systems course roadmap.

Implementations

  • initial-utilities

    • wcat (C and Rust)
    • wgrep (C and Rust)
    • wzip and wunzip (C and Rust)
  • processes shell - wish

    • C (in progress)
    • Rust

Requirements

To compile C code:

  • c99 (C compiler)
  • make (for Makefile)

To compile Rust code:

  • rustc
  • cargo