957 B
957 B
type, title, xp, duration, difficulty
| type | title | xp | duration | difficulty |
|---|---|---|---|---|
| challenge | The Maker | 50 | 25 | 2 |
The Maker
[INCOMING — Mission Control, Earth]
Cadet, you've walked the field. Now build something.
When your script runs, a stale file
cargo-old.txtis sitting in your working directory. Build a cargo bay with three rooms —food/,water/,tools/— each holding an emptymanifest.txt. Then delete the stale file.Three commands:
mkdir— make a directory (use-pto make nested ones at once)touch— create an empty filerm— delete (be careful — there is no trash)[END TRANSMISSION]
Your Task
In starter/starter.sh, write the commands to:
- Create
cargo/food/,cargo/water/,cargo/tools/ - Create an empty
manifest.txtin each room - Remove
cargo-old.txt
Objectives
- All three room directories exist
- Each contains an empty
manifest.txt cargo-old.txtno longer exists