for linux:
git clone "https://github.com/bitskiwi/kiwiOS- install qemu and nasm
cd ~/path/kiwiOSbash run.sh
for windows/mac:
- install linux
cd ~/path/kiwiOSmake
example <*required param> <optional param>
file <*name>- creates a file
<*name> - ex:
file notes.md
- creates a file
dir <*name>- creates a dir
<*name> - ex:
dir stuff
- creates a dir
copy <*target> <*dest>- makes a copy of file / dir (and contents)
<*target>in dir<*dest> - ex:
copy notes.md stuff
- makes a copy of file / dir (and contents)
del <*target>- deletes file / dir (and contents)
<*target> - ex:
del notes.md
- deletes file / dir (and contents)
cd <*target>- navigates into dir
<*target> - ex:
cd stuff
- navigates into dir
puts <value>- prints to terminal
- ex:
puts "hello"
calc <*operand> <*operator> <*operand>- prints the result of the two operands in context of
<*operator> - ex:
calc 5 + 5
- prints the result of the two operands in context of