A real shell sandbox
The terminal is where you work. It's a small virtual filesystem with
actual files, and cd, ls, pipes,
&&, redirection and $VARS all behave
like they do in a normal shell.
- The task is described on the left; you carry it out on the right.
- It runs your command and prints the output, line by line.
- When the last command's output matches what the task asked for, the exercise passes — there's nothing to submit.
- For commands that print nothing, like
cd, you add a check:cd /etc && pwd.