Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Small Python-OS made by Waffle.

## Running PyOS
1. Download and cd to the project in the terminal.
2. Run: python boot.py
3. Now you are ready! Run help to see all commands.
1. Download and `cd` to the project in the terminal.
2. Run: `python boot.py`
3. Now you are ready! Run `help` to see all commands.

## Contributing
If you really really need, make a PR.
6 changes: 6 additions & 0 deletions commands/echo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import typing

command_help = 'Echo the input arguments to the output. Usage: echo [args...]'

def run(args: typing.Any) -> None:
print(' '.join(args))