Knowledge Base

308 copy-ready commands with fill-in variables, plus step-by-step installation guides.

Installation Guides 11

Categories

Installation Guides (11)

Tags

4 results

CLI Productivity

Fuzzy-Find and Open a File (fzf)

find {{search_path}} -type f | fzf | xargs -o {{editor}}
#fzf #find
5 views 0 copies
CLI Productivity

Search Command History with grep

history | grep "{{keyword}}"
#history #grep
4 views 0 copies
CLI Productivity

Create and Reattach a tmux Session

# Create a named session
#tmux #terminal
6 views 0 copies
CLI Productivity

Load .env File into the Current Shell

export $(grep -v "^#" {{env_file}} | xargs)
#env #export
8 views 0 copies