925 B
925 B
type, title, xp, duration, difficulty
| type | title | xp | duration | difficulty |
|---|---|---|---|---|
| challenge | The Editor | 50 | 25 | 2 |
The Editor
[INCOMING — Mission Control, Earth]
Cadet, single-line
echoworks for short messages. Real files need multiple lines. Two options:
Multiple
echolines, each with its own redirect (use>>after the first one to append)A heredoc — write a whole block in one go:
cat > journal.md <<EOF line one line two EOFWrite a script that creates
journal.mdcontaining exactly:# Cadet Log — Day 1 Today I learned to navigate the shell. Tomorrow I will write code.Mind the empty line between the header and the body.
[END TRANSMISSION]
Your Task
In starter/starter.sh, produce journal.md with the exact content
above.
Objectives
journal.mdexists- Contents match the template exactly (4 lines + the blank line)