Skip to content

2:What to do?

FrenchPythonLover edited this page May 29, 2024 · 10 revisions

What can we do?

For the moment, this is a very basic system. You have nothing installed on it except base utilities
The available commands are:

ls
echo 
cd
cls/clear
pm
delbin
lsbin
hello

so i'm going to explain what each command do.

ls

This command list directories.
WARNING: unlike most OSes and due to python limitations, the root folder isn't /! It's ./ ! Keep that in mind before executing any command !
example use:
input: ls ./usr/ Output: bin lib data

echo

This allows the terminal to print any arguments the user submits

cls/clear

This clears the terminal window

pm

The package manager for IZOS! It can download files from the Official IZOS apps repo, or from a custom repo using the -s argument.
Example use:
pm test
or
pm -s https://raw.githubusercontent.com/ExampleUser/ExampleRepo/ExampleBranch/ test

delbin

This progam deletes a previously installed package.
Example use:
delbin test
pm and delbin are protected from deleting !

lsbin

This only command can list all the programs on your system, as an alternative to
cd ./usr/bin/ and then ls

cd

Simple program to change directory

hello

This program is called HelloPy It features some options to get info about the system.

Next, head over to the API docs.

Thank you for enjoying IZOS !

Clone this wiki locally