Module linux_plus_plus.cli

The command line application to use linux++.

Functions

def app()
Expand source code
def app():
    k = Kernel()
    k.boot()

    shell = Shell(k)
    register_all(shell)

    sys.exit(shell.run())