This is a little simulation of the linux "nano" shell command. How to use: With "nano", you can open files. With "mkfile" + filename, you can create files. With "dir", you can list all files. With "delfile" + filename, you can delete files. With "cls", you can clear the screen. Example: Create file with the name "myText": 'mkfile myText' Check if our file exists: 'dir' Open and edit our "myText"-File: 'nano myText' Write, save and close our "myText"-File: 'Hello World' '/save' '/close' Delete our "myText"-File: 'delfile myText' Have fun, LetUsBattle
Thanks to my brain for the idea ;)