Build Basics / Standard term
Command line (terminal)
The command line is a text interface where you type short typed instructions to run programs, build a project, or deploy it, shown in a window called the terminal instead of a screen you click through.
The command line is a text interface where you type short typed instructions to run programs, build a project, or deploy it, shown in a window called the terminal. Each line names a tool and gives it options, then you press Enter and the tool prints its result back. Say you finished a small to-do app and want to put it online: you open the terminal, type a deploy command your host gave you, and the tool packages the project, uploads it, and reports the live address. The same window is where a build runs, where version history gets saved, and where errors print when something breaks.
Builder example
Most hosting, build, and version-control tools expose their full power through typed commands, and AI coding assistants run inside the terminal, so this is where you watch an agent work and read what it did. When you ask an assistant to deploy your to-do app, it runs the commands in the terminal and the output scrolls past in real time. Reading that output is how you confirm the deploy succeeded or catch the line where it failed.
Common confusion: The terminal is the window; the command line is the prompt inside it where you type, and the shell is the program that reads and runs what you type. People use the three words loosely, but they name the container, the input, and the interpreter.