Skip to content
/ JOS Public

this is an operating system(not really) made for killing time on running command. Only works on windows

Notifications You must be signed in to change notification settings

JDot555/JOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JDot Operating system - JOS

This is a simple Java program that takes command input and fulfills your request, similar to a CLI operating system. You can run it by clicking the JOS.exe file.

Available Commands:

1. Listen to directory and file:

  • ls
  • ls -all
  • ls --all

Note:The last two ls commands have different functions. Figure them out yourself.

2. Move from directory to directory:

  • cd <directory/path/name>
  • cd

3. Create a file or folder:

  • create <file name>
  • create dir <folder name>

4. Launch editor:

  • editor

5. Read from a file:

  • read <file name>

6. Rename a file or folder:

  • rename <oldName> <newName>
  • rename dir <oldName> <newName>

7. Copy a file or folder to another directory or make a copy in the same directory:

  • cp <file name> <new/file/path/filename>
  • cp dir <folder name> <new/folder/path/filename>

8. Move a file or folder to another directory:

  • mv <file name> <new/file/path/filename>
  • mv dir <folder name> <new/folder/path/filename>

9. Remove file or folder:

  • rm <file name>
  • rm dir <folder name>

10. Clear the screen:

  • cls
  • clear

11. Launch browser:

  • browse
  • browser

12. Show help:

  • -help
  • -h

13. Exit OS:

  • exit