Kolam Ayer MakersLinux Foundations

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

Steps

  1. Run micro ~/playground/micro-note.txt.
  2. Type edited with micro on the first line.
  3. Save with Ctrl-S.
  4. Quit with Ctrl-Q.
  5. Run cat ~/playground/micro-note.txt.
  6. Ask the guide to check the file.

Hints

  1. Open the exact path with micro.
  2. Save before quitting.
  3. 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.