Edit with micro
Quest: edit-with-micro
Mission
Use micro to create ~/playground/micro-note.txt containing edited with micro, then print it with cat.
Why This Matters
Editing is different from printing. A text editor lets you change a file, save it, close it, and inspect the result afterward.
Commands You Will Use
microcat
Steps
- Run
micro ~/playground/micro-note.txt. - Type
edited with microon the first line. - Save with
Ctrl-S. - Quit with
Ctrl-Q. - Run
cat ~/playground/micro-note.txt. - Ask the guide to check the file.
Hints
- Open the exact path with
micro. - Save before quitting.
- The file must contain exactly
edited with micro.
If Check Fails
Open ~/playground/micro-note.txt again, replace the content with edited with micro, save, quit, and check again.

Linux Foundations