๐ Bashcrawl
Terminal Adventure Game โ Setup Guide for Cloud Shell
Bashcrawl is a command-line dungeon crawler where you use Linux terminal commands to explore and solve puzzles.
๐งโ๐ป What Youโll Need
- A Google Account (personal or school)
- A web browser (Chrome recommended)
- A session in Google Cloud Shell
๐ Setup Instructions
Step 1: Launch Google Cloud Shell
- Go to: https://shell.cloud.google.com
- Sign in with your Google Account.
- Click Continue to start the Cloud Shell session.
Youโll be given access to a full Linux terminal environment, pre-configured with all the tools you need.
Step 2: Clone the Bashcrawl Repository
git clone https://gitlab.com/slackermedia/bashcrawl.git
Step 3: Enter the Bashcrawl Folder
cd bashcrawl
Step 4: Run the Setup Script
bash setup.sh
This creates a series of directories and files โ your command-line dungeon.
Step 5: Begin Your Adventure
Move into the dungeon and start exploring:
cd dungeon
Then use these commands to navigate:
| Command | Description |
|---|---|
ls | List files and folders |
cd room1 | Enter a room (change directory) |
cat note | Read a note in the room |
pwd | Show your current directory |
cd .. | Go back one level |
clear | Clean up your terminal display |
๐งน (Optional) Clean Up
If you want to remove the dungeon:
cd ~
rm -rf bashcrawl
๐งโ๐ซ Teacher Tips
- Bashcrawl reinforces core command-line concepts in a fun and exploratory way.
- Students can customize or expand the dungeon by editing the folders and notes.
- Consider using Bashcrawl as an assessment checkpoint or intro to shell scripting.