Glossary
12 terms from "终端入门:基础命令与文件管理." Look them up when you get stuck; the first mention in the text carries a hover definition.
| Term | Definition | Source |
|---|---|---|
| terminal | 一个提供文本窗口、让你通过 shell 运行命令的应用。 | support.apple.com |
| shell | 读取你输入的命令、请计算机执行并把结果显示给你的程序。 | missing.csail.mit.edu |
| prompt | shell 准备好接收命令时打印的一小段文字,通常以 `$` 或 `%` 结尾。 | documentation.ubuntu.com |
| command | 你输入到 shell 里、按 Return 执行的一个词或一行文字。 | missing.csail.mit.edu |
| 工作目录(working directory) | 你在终端里运行命令时当前所在的文件夹。 | linuxcommand.sourceforge.io |
| 绝对路径(absolute path) | 从文件系统的根开始、描述文件或文件夹完整位置的路径。 | linuxcommand.sourceforge.io |
| 相对路径(relative path) | 从当前工作目录而不是文件系统的根开始的路径。 | linuxcommand.sourceforge.io |
| 主目录(home directory) | 你的用户账户的默认文件夹,常用 `~` 简写。 | redhat.com |
| 父目录(parent directory) | 直接包含当前文件夹的那个文件夹,简写为 `..`。 | redhat.com |
| argument | 交给命令、告诉它作用对象的词,例如文件名或文件夹名。 | developer.apple.com |
| flag | 一种通常以 `-` 开头的特殊选项,用来改变命令的行为方式。 | developer.apple.com |
| 手册页(manual page) | 命令的内置文档,用 `man` 打开,按 `q` 退出。 | missing.csail.mit.edu |