6 lines
247 B
Python
6 lines
247 B
Python
from .shell import *
|
|
print("""NOTE: this is a base shell with only the default commands.\n
|
|
If you want to actually do things with a shell, import the shell package\n
|
|
and instantiate a shell.Shell or derive a class from it.""")
|
|
s = Shell()
|
|
s.run()
|