The Terminal & Shell, Explained
What the black window actually is, the difference between the terminal and the shell, the everyday commands worth knowing, and the real power features - pipes, redirection, wildcards, and PATH - that make typing beat clicking.
Download EPUB- What the Terminal and Shell Actually Are The terminal is the window; the shell (bash, zsh, PowerShell) is the program inside it that reads your typed commands and asks the OS to run them. Together they form a read-eval-print loop, and the prompt is the shell saying it's ready.
- The Essential Commands The anatomy of a command (command + options + arguments), then the everyday toolkit: pwd, ls, cd, cat, less, mkdir, cp, mv, and rm - each with a real transcript, explained for real, and the gotchas that bite beginners (rm has no undo; quote filenames with spaces).
- The Real Power: Pipes, Redirection, Wildcards & PATH The features that make typing beat clicking: | pipes the output of one command into the next, > and >> redirect output into files, * matches groups of filenames, and PATH is the list of folders the shell searches to find which program a command name means.