since 2021-09-07
>>> from upysh import * upysh is intended to be imported using: from upysh import * To see this help text again, type "man". upysh commands: pwd, cd("new_dir"), ls, ls(...), head(...), cat(...) newfile(...), mv("old", "new"), rm(...), mkdir(...), rmdir(...), clear >>> ls 230 boot.py >>> newfile("test.py") Type file contents line by line, finish with EOF (Ctrl+D). print("test") >>> cat("test.py") print("test") >>> ls 230 boot.py 14 test.py >>> import test test >>>