DISCLAIMER!!! Ai was used in this project(github copilot to code and chat gpt to help me edit readme!)
A basic working operating system implemented in JavaScript. This project to create a terminal-based OS, where users can interact with a file system, execute commands, and manage directories and files through the web interface. 🚀
The following commands are available in this OS:
help
: Displays a list of available commands.mkdir [name]
: Creates a new directory.touch [name]
: Creates a new empty file.add [file] [content]
: Adds content to an existing file.ls
: Lists contents of the current directory.cat [name]
: Displays the contents of a file.rm [name]
: Deletes a file or directory.clear
: Clears the terminal screen.cd [dir]
: Changes the current directory.cd ..
: Moves up to the parent directory.