Updated daily with new content

>_ The Command Line
Encyclopedia

Master CLI tools with comprehensive guides, quick references, and hands-on tutorials. From basic commands to advanced scripting.

bash

$ wikicmd search "text processing"

Found 24 commands matching "text processing":

grep, awk, sed, cut, sort, uniq, tr, wc...

$ wikicmd explain grep

grep - search for patterns in files

Usage: grep [OPTIONS] PATTERN [FILE...]

450+
Commands
120+
Tutorials
85+
Tools
50+
Contributors

Featured Commands

Most popular CLI commands

View all →
grepText Processing

Search text patterns using regular expressions

$ grep -r "pattern" /path
Updated 2026-02-20
awkText Processing

Pattern scanning and text processing language

$ awk '{print $1}' file.txt
Updated 2026-02-19
sedText Processing

Stream editor for filtering and transforming text

$ sed 's/old/new/g' file
Updated 2026-02-18
curlNetworking

Transfer data with URLs, supports multiple protocols

$ curl -X POST https://api.example.com
Updated 2026-02-17
jqJSON

Lightweight command-line JSON processor

$ jq '.data[] | .name' response.json
Updated 2026-02-16
rsyncFile Transfer

Fast, versatile file copying and synchronization

$ rsync -avz src/ dest/
Updated 2026-02-15

Latest Tutorials

All tutorials →
Shell15 min

Mastering Bash Shell Scripting: From Basics to Advanced

Learn to write powerful shell scripts with variables, loops, functions, and error handling.

2026-02-20
Git10 min

Essential Git Commands Every Developer Should Know

Master version control with these must-know Git commands for daily workflow.

2026-02-18
Docker12 min

Docker CLI Deep Dive: Container Management Made Easy

From docker run to docker compose - everything you need for container workflows.

2026-02-15
SSH8 min

SSH Tips and Tricks for Remote Server Management

Configure SSH keys, tunnels, and jump hosts like a pro system administrator.

2026-02-12

Quick Reference

Full cheatsheet →
Essential Commands
ls -la

List all files with details

chmod 755 file

Set executable permissions

tar -xzf archive.tar.gz

Extract tar.gz archive

find . -name "*.log"

Find files by name

ps aux | grep node

Find running processes

df -h

Check disk space usage

Start Mastering the Command Line

From beginner basics to advanced scripting, WikiCMD has everything you need to become a CLI power user.