From f861c7b4bc43449811c265a89ba4038a804ac810 Mon Sep 17 00:00:00 2001
From: VehementHam <75701545+VehementHam@users.noreply.github.com>
Date: Wed, 27 Mar 2024 14:47:18 -0500
Subject: [PATCH 1/2] Commands explanation
---
src/content/docs/en/linux/shell.mdx | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/content/docs/en/linux/shell.mdx b/src/content/docs/en/linux/shell.mdx
index 77322b34..585bd190 100644
--- a/src/content/docs/en/linux/shell.mdx
+++ b/src/content/docs/en/linux/shell.mdx
@@ -188,4 +188,8 @@ For files in your current folder, you must use `./` before the file name.
./exec
```
+
+ When executables are moved to a `$PATH` directory such as `/usr/local/bin/`, the filenames can be executed as commands.
+
+
#### [← Back To: Software and Package Management](../software)
From 777ffd063bbaafaa48aa3f909ebf4b582a1e35f1 Mon Sep 17 00:00:00 2001
From: VehementHam <75701545+VehementHam@users.noreply.github.com>
Date: Thu, 28 Mar 2024 10:14:32 -0500
Subject: [PATCH 2/2] Improve wording
---
src/content/docs/en/linux/shell.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/docs/en/linux/shell.mdx b/src/content/docs/en/linux/shell.mdx
index 585bd190..28555905 100644
--- a/src/content/docs/en/linux/shell.mdx
+++ b/src/content/docs/en/linux/shell.mdx
@@ -189,7 +189,7 @@ For files in your current folder, you must use `./` before the file name.
```
- When executables are moved to a `$PATH` directory such as `/usr/local/bin/`, the filenames can be executed as commands.
+ Executables are often moved into a directories listed in the `$PATH` variable (run `echo $PATH`). The filenames of executables in `$PATH` can be executed as commands (i.e. `custom-command` will run `/usr/local/bin/custom-command`)
#### [← Back To: Software and Package Management](../software)