forked from wfu-agentic-ai/workgroup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglossary.yml
More file actions
86 lines (58 loc) · 7.34 KB
/
glossary.yml
File metadata and controls
86 lines (58 loc) · 7.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
CLI: |
The command-line interface (CLI) is a text-based way to interact with your computer. Instead of clicking icons and menus, you type commands at a prompt to perform tasks like creating files, installing software, or running programs.
Terminal: |
A terminal (or terminal emulator) is the application that provides a window for typing commands. On macOS the default is Terminal.app; on Windows you can use Windows Terminal or a WSL Ubuntu window. The terminal runs a shell inside it.
Command: |
A command is an instruction you type at the terminal prompt. It tells the shell to perform an action, such as listing files (`ls`), creating a directory (`mkdir`), or displaying help (`man`). A command may be followed by options (flags) and arguments.
Flag: |
A flag (also called an option or switch) modifies how a command behaves. Short flags start with a single dash and one letter (`-l`), while long flags start with two dashes and a word (`--long`). Multiple short flags can often be combined (`-la`).
Argument: |
An argument is the input a command acts on — usually a file name, directory path, or text string. For example, in `mkdir my_folder`, the argument `my_folder` tells `mkdir` which directory to create.
"Package Manager": |
A package manager is a tool that automates installing, updating, and removing software. Instead of downloading installers from the web, you run a single command (e.g. `brew install git`) and the package manager handles dependencies and versioning for you.
Homebrew: |
Homebrew is the most popular package manager for macOS (and Linux). It installs command-line tools ("formulae") and desktop applications ("casks") into managed directories so they stay organized and easy to update.
"Absolute Path": |
An absolute path specifies a file or directory's location starting from the root of the filesystem. On macOS and Linux it always begins with `/`, for example `/Users/jane/Documents/report.txt`. An absolute path works the same regardless of your current directory.
"Relative Path": |
A relative path specifies a location starting from your current working directory. For example, if you are in `/Users/jane`, the relative path `Documents/report.txt` points to `/Users/jane/Documents/report.txt`. Relative paths never start with `/`.
"Root Directory": |
The root directory (`/`) is the top-level directory that contains every other file and directory on the system. All absolute paths start from root. On macOS, the root directory contains directories like `/Users`, `/Applications`, and `/System`.
"Home Directory": |
Your home directory is your personal folder where your files, settings, and configuration live. On macOS it is `/Users/yourname`; on Linux it is `/home/yourname`. The tilde character (`~`) is a shortcut that expands to your home directory in the shell.
Wildcard: |
A wildcard is a special character that matches file names by pattern instead of by exact name. The asterisk (`*`) matches any sequence of characters, and the question mark (`?`) matches exactly one character. For example, `*.txt` matches all files ending in `.txt`.
Glob: |
Globbing is the shell's process of expanding wildcard patterns into matching file names. When you type `ls *.md`, the shell finds every file ending in `.md` in the current directory and passes those names to `ls`. The term comes from "global command."
Dotfile: |
A dotfile is any file or directory whose name starts with a period (`.`), such as `.bashrc` or `.gitconfig`. Dotfiles are hidden by default — `ls` won't show them unless you add the `-a` flag. They are commonly used to store configuration settings.
"Startup File": |
A startup file (also called a config file or rc file) is a script your shell runs automatically each time it starts. For Zsh this is `~/.zshrc`; for Bash it is `~/.bashrc`. You add aliases, environment variables, and tool integrations to these files to customize your shell.
Source: |
The `source` command (also written as `.` in POSIX shells) executes a file in your current shell session. Running `source ~/.zshrc` re-reads your shell configuration so that changes take effect immediately, without opening a new terminal window.
Export: |
The `export` command makes an environment variable available to child processes (programs launched from your shell). Without `export`, a variable exists only in the current shell session. For example, `export EDITOR=nano` ensures that programs looking for the EDITOR variable will find it.
WSL: |
The Windows Subsystem for Linux (WSL) is a compatibility layer for running Linux binary executables natively on Windows 10 and Windows Server 2019. It allows users to run a Linux environment directly on Windows, without the need for a virtual machine or dual-boot setup.
Shell: |
A shell is a command-line interface that allows users to interact with the operating system. It provides a way to execute commands, run scripts, and manage files and processes. Common shells include Bash, Zsh, and PowerShell.
Alias: |
An alias is a shortcut or alternative name for a command or series of commands in a shell. It allows users to create custom commands or abbreviations for frequently used commands, making it easier and faster to execute them.
"Environment Variable": |
An environment variable is a dynamic value that can affect the behavior of processes and applications on a computer. It is typically used to store configuration settings, such as paths to executables or libraries, and can be accessed by programs and scripts.
PATH: |
The PATH is an environment variable that specifies a list of directories where the operating system looks for executable files when a command is entered in the shell. It allows users to run programs by name without needing to specify their full path in the command.
Bash: |
Bash (Bourne Again SHell) is a popular Unix shell and command language. It is the default shell on many Linux distributions and macOS. Bash provides a powerful scripting language and a wide range of built-in commands for managing files, processes, and system resources.
Zsh: |
Zsh (Z Shell) is an extended version of the Bourne Shell (sh) with many additional features and improvements. It is known for its powerful scripting capabilities, advanced tab completion, and customizable prompts. Zsh is often used as an alternative to Bash for interactive use and scripting.
"Version Control": |
A system for tracking changes to files over time. Instead of renaming files to keep old versions, a version control system like Git records each set of changes as a snapshot you can revisit, compare, or restore.
Repository: |
A project directory that Git is tracking. It contains your files plus a hidden `.git/` folder where Git stores the full history of changes, configuration, and metadata.
"Working Directory": |
The project files as they currently exist on disk — the versions you can see, open, and edit. In Git's three-zone model, the working directory is where you make changes before staging them.
"Staging Area": |
An intermediate zone where you prepare changes before committing them. Running `git add` moves changes from the working directory into the staging area, letting you choose exactly which changes go into your next commit.
Commit: |
A saved snapshot of the changes you staged. Each commit records what changed, who made the change, when it happened, and a short message describing why. Commits form a timeline you can browse with `git log`.