42 results

ls

20-aliases.zshalias

List directory contents with icons and colors

lsd

ll

20-aliases.zshalias

Long listing with hidden files and grouped directories

lsd -lah --group-dirs=first

la

20-aliases.zshalias

List all files including hidden ones

lsd -A

lt

20-aliases.zshalias

Tree view up to 3 levels deep with grouped directories

lsd --tree --depth=3 --group-dirs=first

..

20-aliases.zshalias

Go up one directory level

cd ..

...

20-aliases.zshalias

Go up two directory levels

cd ../..

....

20-aliases.zshalias

Go up three directory levels

cd ../../..

-

20-aliases.zshalias

Return to the previous directory

cd -

mkdir

20-aliases.zshalias

Create directories including parent paths automatically

mkdir -p

cp

20-aliases.zshalias

Copy files with interactive confirmation and verbose output

cp -iv

mv

20-aliases.zshalias

Move files with interactive confirmation and verbose output

mv -iv

rm

20-aliases.zshalias

Remove files with interactive confirmation and verbose output

rm -iv

cat

20-aliases.zshalias

Display file contents with syntax highlighting and line numbers

bat --style=numbers --paging=never

grep

20-aliases.zshalias

Search text with colorized output

grep --color=auto

diff

20-aliases.zshalias

Compare files with colorized output

diff --color=auto

ports

20-aliases.zshalias

Show all listening ports and their processes

ss -tulnp

myip

20-aliases.zshalias

Display your public IP address

curl -fsSL https://ifconfig.me/ip && printf "\n"

weather

20-aliases.zshalias

Display a weather forecast in the terminal

curl --http1.1 -fsSL https://wttr.in

glog

20-aliases.zshalias

Show a compact visual git commit graph

git log --oneline --graph --decorate -20

gpr

20-aliases.zshalias

Pull with rebase for a cleaner linear history

git pull --rebase

gun

20-aliases.zshalias

Undo the last commit while keeping changes staged

git reset HEAD~1 --soft

gcount

20-aliases.zshalias

Show commit counts per author, sorted by frequency

git shortlog -sn --no-merges

G

70-globals.zshglobal alias

Pipe to grep — use anywhere in a command

| grep

L

70-globals.zshglobal alias

Pipe to less — use anywhere in a command

| less

W

70-globals.zshglobal alias

Count lines — use anywhere in a command

| wc -l

H

70-globals.zshglobal alias

Show first lines — use anywhere in a command

| head

T

70-globals.zshglobal alias

Show last lines — use anywhere in a command

| tail

NE

70-globals.zshglobal alias

Suppress stderr output

2>/dev/null

NUL

70-globals.zshglobal alias

Suppress all output (stdout and stderr)

>/dev/null 2>&1

extract

60-functions.zshfunction

Extract any supported archive format automatically

extract <archive>

mkcd

60-functions.zshfunction

Create a directory and cd into it in one step

mkcd <dir>

ff

60-functions.zshfunction

Find files by name recursively — uses fd when available

ff <pattern> [path]

ft

60-functions.zshfunction

Find text in files — uses ripgrep when available, falls back to grep

ft <text> [path]

fkill

60-functions.zshfunction

Fuzzy-select and kill a running process

fkill [signal]

headers

60-functions.zshfunction

Follow redirects and print HTTP response headers

headers <url>

peek

60-functions.zshfunction

Preview a file quickly — uses bat when available

peek <file>

dusage

60-functions.zshfunction

Show disk usage summary for the largest items in a directory

dusage [path] [count]

bigfiles

60-functions.zshfunction

Find the largest files recursively in a directory tree

bigfiles [path] [count]

croot

60-functions.zshfunction

Jump to the root of the current git repository

croot

path

60-functions.zshfunction

Print each PATH entry on its own line

path

fbr

60-functions.zshfunction

Fuzzy-pick and checkout a git branch from local or remote refs

fbr

npkg

60-functions.zshfunction

Nix package manager wrapper — add, remove, find, search, upgrade, and more

npkg <subcommand>