The dungeon gate groans open. Cool air pours out carrying the scent of ancient scrolls. This is where every hero begins β four commands, a brass key, and the courage to type.
pwdls and ls -Fcatmerlin command| Command | What It Does |
|---|---|
pwd |
Print working directory β shows where you are |
ls |
List directory contents |
ls -F |
List with type markers: / = dir, * = executable, @ = symlink |
cat file |
Print file contents to the terminal |
cd dir |
Change directory |
cd .. |
Go up one level |
merlin |
Ask the wizard for a context-aware hint |
quest |
Display current objectives |
pwd
# Output: /home/<user>/bashcrawl/ENTRANCE (or similar)
pwd always shows your absolute path. Use it whenever you feel lost.
ls
# Output: scroll cellar
ls -F
# Output: scroll cellar/
The trailing / after cellar tells you it is a directory (a doorway to the next chamber). scroll has no marker β it is a plain text file.
cat scroll
The scroll contains the first piece of the dungeonβs story and a clue about the brass key. Read it carefully β items and hints mentioned here matter later.
merlin
Merlin reads your current location and delivers a context-sensitive hint. Whenever you are stuck, merlin is your first stop.
quest
The quest log shows what you need to do in the current chamber.
cd cellar
pwd
# Output: .../ENTRANCE/cellar
Congratulations β you have left the entrance. Continue to the Cellar walkthrough or explore the Workshop first.
| Problem | Cause | Fix |
|---|---|---|
command not found: merlin |
Not in the game shell | Run ./main.sh --interactive first |
No such file: scroll |
Wrong directory | Run pwd; navigate to ENTRANCE with cd |
ls shows nothing |
Empty directory | Make sure you are in ENTRANCE, not / |
| Path has spaces | Rare edge case | Wrap in quotes: cd "my dir" |
Before marking this side-quest complete, verify:
pwd returns without running itls and ls -FYou are now ready to explore deeper. Choose your path:
Continue your terminal adventure with these resources:
Four commands mastered. Hundreds to go. The dungeon opens before you. ποΈ