Navigate Directory
nd is a terminal directory navigator that replaces repetitive
ls/cd loops with indexed selection.
It lists subdirectories in the current location, lets you move deeper by number,
go back with b, and quit with q.
Path: /current/working/dir
Commands: [1..3] select, [b] back, [q] quit
┃ 1. src
┃ 2. docs
┃ 3. target
>How It Works
ndreads directories from the current working directory (or--start-dir).- It shows only directories, sorted alphabetically.
- You choose a directory index,
b(back), orq(quit). - On quit, it prints the selected path.
- The shell
ndwrapper function changes your shell cwd to that printed path.