My personal website to show off what projects I have accomplished and what I am working on.

Commands

Quick command notes, shell helpers, and dotfiles.

A running command notebook for stuff I use often.

Use the tag filter below to narrow commands by topic (git, networking, archives, shell, etc.).

Dotfiles

Bash config, aliases, and helper functions. Includes install one-liner + group notes.

Filter by tag:

ip route

ip route show

Show routing table entries.

#networking #linux #routing

awk columns

awk '{print $1, $3}' file.txt

Print selected columns from whitespace-delimited text.

#awk #text #shell