Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 479 Bytes

README.md

File metadata and controls

45 lines (28 loc) · 479 Bytes

cli

Project Stack

  • C++

Project Description

Implemented Commands

  • cat
  • cd
  • cpu
  • date
  • exe
  • help
  • ls
  • mv
  • pro
  • pwd
  • rm

Flow Chart

graph TD
    A([Start]) --> C[Print the user input message]
    C --> D[User inputs a command]
    D -- Command is 'exit' --> E([End])
    D -- Command is not 'exit' --> F[Execute the appropriate action]
    F --> C
Loading

Result