Skip to content

A small directory hunt created for an Escape Room event.

Notifications You must be signed in to change notification settings

grohan47/directory-hunt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

directory-hunt

A small Linux directory hunt created for an Escape Room event.

Instructions on how to use:

Overload the cd command in your .bashrc by appending the following function definition:

cd() {
    # Use the builtin cd to change directories.
    builtin cd "$@" || return

    # If a per-directory config file exists, source it.
    if [[ -f .cdrc ]]; then
        source .cdrc
    fi
}

This overloaded function will source the .cdrc file in each sub-directory and run the commands written within it (which are hints to aid you in your hunt!)

Do NOT attempt this directory hunt in the GUI-- It ruins any point of it!

Dependencies:

figlet vlc

About

A small directory hunt created for an Escape Room event.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages