The cellar reeks of wine and secrets. Barrels line the walls; cobwebs drape the ceiling. Four iron doors lead deeper into the dungeon β€” armoury, chapel, vault, scrap. But first you must find the emerald amulet.

🎯 Quest Objectives

�️ Quest Prerequisites

⚑ Command Cheatsheet

Command What It Does
ls -F List with type markers
ls -la Long listing, including hidden files
file filename Describe what type of file this is
alias name='cmd' Create a command shortcut
alias List all defined aliases
unalias name Remove an alias
type name Show how a name is resolved (builtin/alias/function/file)

ls -F Symbol Key

Symbol Meaning
/ Directory
* Executable file
@ Symbolic link
= Socket
\| Named pipe (FIFO)
(none) Regular file

πŸ—ΊοΈ Walkthrough

Step 1 β€” Survey the cellar

ls -F
# Example output:
# emerald_amulet  armoury/  chapel/  vault/  scrap/  dusty_scroll  recipe*

Notice the variety: a regular file (emerald_amulet), directories (/), and an executable (recipe*).

Step 2 β€” Investigate with file

file dusty_scroll
# dusty_scroll: ASCII text

file recipe
# recipe: Bourne-Again shell script, ASCII text executable

file reads the file’s magic bytes β€” much more reliable than guessing from the name.

Step 3 β€” Read the scroll

cat dusty_scroll

The scroll reveals a clue about the emerald amulet’s location and warns about hidden traps in the deeper chambers.

Step 4 β€” Collect the amulet

cat emerald_amulet

Reading it adds it to your inventory. Verify:

inventory
# Shows: emerald amulet βœ“

Step 5 β€” Create a helpful alias

# Quick inventory check shortcut
alias inv='inventory'

# Quick navigation shortcut
alias back='cd ..'

# Verify
alias

Aliases last only for the current session unless added to ~/.bashrc or ~/.bash_profile.

Step 6 β€” Identify all four exits

ls -F
# armoury/  chapel/  vault/  scrap/

Each leads to a distinct area of the dungeon. You can tackle them in any order.

πŸ’‘ Common Pitfalls

Problem Cause Fix
alias: bad alias name Space in alias name Use underscores: alias my_cmd='...'
inventory not found Not in game shell Start with ./main.sh --interactive
Can’t find emerald amulet Wrong directory pwd; make sure you are in CELLAR
All four exits missing Older game version Run ./setup.sh --repair

βœ… Validation

➑️ Next Steps

Choose your next chamber β€” all four are unlocked:

Chamber Skills Link
βš”οΈ Armoury Permissions, chmod, combat Armoury
β›ͺ Hidden Chapel Hidden files, man pages Chapel
πŸ”’ Vault Environment variables, export Vault
πŸ—‘οΈ Scrap Heap Symbolic links, ln -s Scrap

πŸ“š External Resources

Continue your terminal adventure with these resources:


Emerald amulet secured. Four doors, four paths. The dungeon deepens. 🍷