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.

🎯 Quest Objectives

�️ Quest Prerequisites

⚑ Command Cheatsheet

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

πŸ—ΊοΈ Walkthrough

Step 1 β€” Where am I?

pwd
# Output: /home/<user>/bashcrawl/ENTRANCE  (or similar)

pwd always shows your absolute path. Use it whenever you feel lost.

Step 2 β€” What’s here?

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.

Step 3 β€” Read the scroll

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.

Step 4 β€” Ask Merlin

merlin

Merlin reads your current location and delivers a context-sensitive hint. Whenever you are stuck, merlin is your first stop.

Step 5 β€” Check your objectives

quest

The quest log shows what you need to do in the current chamber.

Step 6 β€” Enter the cellar

cd cellar
pwd
# Output: .../ENTRANCE/cellar

Congratulations β€” you have left the entrance. Continue to the Cellar walkthrough or explore the Workshop first.

πŸ’‘ Common Pitfalls

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"

βœ… Validation

Before marking this side-quest complete, verify:

➑️ Next Steps

You are now ready to explore deeper. Choose your path:


πŸ“š External Resources

Continue your terminal adventure with these resources:


Four commands mastered. Hundreds to go. The dungeon opens before you. πŸ—οΈ