seed: curriculum content

This commit is contained in:
2026-05-07 14:32:44 +00:00
parent 9258534803
commit ec76f4f56b
100 changed files with 2846 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
---
type: challenge
title: "The Searcher"
xp: 75
duration: 30
difficulty: 3
---
# The Searcher
> **[INCOMING — Mission Control, Earth]**
>
> Cadet, an archive arrived. Somewhere in it, a single log file
> mentions the word `BREACH`. We need it found.
>
> Two commands:
>
> - `find <path> -name "<pattern>"` — locate files by name
> - `grep -rl "<text>" <path>` — search file contents recursively,
> list only the matching file paths
>
> Your script must produce two files:
>
> 1. `logs.txt` — every `.log` file under `archive/`
> 2. `breach.txt` — the path to the file containing `BREACH`
>
> [END TRANSMISSION]
## Your Task
In `starter/starter.sh`, write the two commands.
## Objectives
- `logs.txt` lists every `.log` file under `archive/`
- `breach.txt` contains the path to the file mentioning `BREACH`