Results for directory

15 tools · 14 with a matching recipe

direnv

CLI

Load and unload environment variables depending on the current directory.

Allow .envrc in current directory~99% est.
direnv allow .
shell3 recipes

rsync

CLI

Fast, versatile file copy and sync tool for local and remote transfers.

Sync directory to remote server~97% est.
rsync -avz --progress ./local/ user@host:/remote/path/+1 more matching recipe
file-archive2 recipes

tar

CLI

Create, list, and extract .tar / .tar.gz archives. Preinstalled on macOS and Linux.

Create a .tgz from a directory's contentsVerified macOS · Linux
tar -czf out.tgz -C project .+1 more matching recipe
file-archive4 recipes · 4 verified

zip / unzip

CLI

Create and extract .zip archives. Preinstalled on macOS and most Linux images.

Zip a directory recursivelyVerified macOS · Linux
zip -qr out.zip project+1 more matching recipe
file-archive3 recipes · 3 verified

zoxide

CLI

A smarter cd command that learns your most used directories.

Jump to a frequently used directory~97% est.
z projectname+1 more matching recipe
shell2 recipes

dust

CLI

A more intuitive version of du in Rust.

Show disk usage of current directory~99% est.
dust
system3 recipes

eza

CLI

A modern, maintained replacement for ls with color and Git support.

Show directory tree~99% est.
eza --tree --level 2
viewers3 recipes

helix

CLI

A post-modern modal text editor built in Rust.

Open current directory~98% est.
hx .
editors3 recipes

lazygit

CLI

Simple terminal UI for git commands.

Open lazygit in specific directory~98% est.
lazygit -p /path/to/repo
git2 recipes

lsd

CLI

The next gen ls command with many pretty colors and cool icons.

Show directory tree~98% est.
lsd --tree --depth 2
viewers2 recipes

ncdu

CLI

NCurses disk usage analyzer with an interactive interface.

Analyze home directory disk usage~99% est.
ncdu ~
system3 recipes

sed

CLI

Stream editor for filtering and transforming text.

Replace text across all files in a directory (portable)Verified macOS · Linux
grep -rl 'old' . | xargs perl -pi -e 's/old/new/g'
text-processing6 recipes · 4 verified

tokei

CLI

Count lines of code across projects, by language.

Count lines of code in current directory~99% est.
tokei .
dev-tools3 recipes

watchexec

CLI

Executes commands in response to file modifications.

Watch specific directory only~97% est.
watchexec -w src/ -- pnpm test
dev-tools3 recipes

ripgrep

CLI

Recursively searches directories for a regex pattern, respecting .gitignore.

search4 recipes