Run the terminal simulator:
python terminal.pyUSER MANAGEMENT: createuser - Create a new user account login - Login as a user logout - Logout current user users - List all registered users whoami - Show current user information
FILE SYSTEM NAVIGATION: pwd - Print working directory ls - List directory contents cd - Change directory cd .. - Go to parent directory cd / - Go to root directory
FILE & DIRECTORY OPERATIONS:
mkdir - Create a new directory
touch - Create an empty file
write - Write content to a file
read - Read file content
cat - Read file content (alias for read)
rm - Delete a file or empty directory
mv
SYSTEM: clear - Clear the screen exit / quit - Exit the terminal
Note: Most file operations require you to be logged in as a user. """