From 407e0f32a74ac6cfdec3336887a4ce0a03188c13 Mon Sep 17 00:00:00 2001
From: Jacques Dainat <jacques.dainat@ird.fr>
Date: Fri, 9 Feb 2024 16:27:13 +0100
Subject: [PATCH] cleanify

---
 docs/pages/bash/bash-2-the-basics.md                       | 3 ++-
 .../{bash-5-quotes.md => bash-5-special_characters.md}     | 0
 mkdocs.yml                                                 | 7 +++++--
 3 files changed, 7 insertions(+), 3 deletions(-)
 rename docs/pages/bash/{bash-5-quotes.md => bash-5-special_characters.md} (100%)

diff --git a/docs/pages/bash/bash-2-the-basics.md b/docs/pages/bash/bash-2-the-basics.md
index 746a3c4..65386d0 100644
--- a/docs/pages/bash/bash-2-the-basics.md
+++ b/docs/pages/bash/bash-2-the-basics.md
@@ -161,6 +161,7 @@ Here the few first command good to know:
 | Command | action |
 | :-: | :-: |
 | ls | Inspect files and directories |
+| cat | View file content | 
 | pwd | Print working directory |
 | echo | Print a value e.g: `echo "coucou"` |
 
@@ -292,7 +293,7 @@ Let's take the `SHELL` variable to play with.
     ```
 
 Actually this variable is very important because it tells which shell you are using in the terminal.  
-If you whish to list shells available on your computer run:
+A list of shells available on your computer is stored in the `/etc/shells` file. To display its content use the `cat` command:  
 
 ```bash
 cat /etc/shells
diff --git a/docs/pages/bash/bash-5-quotes.md b/docs/pages/bash/bash-5-special_characters.md
similarity index 100%
rename from docs/pages/bash/bash-5-quotes.md
rename to docs/pages/bash/bash-5-special_characters.md
diff --git a/mkdocs.yml b/mkdocs.yml
index c91f25a..d7a2525 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -97,8 +97,11 @@ nav:
         - The basics: pages/bash/bash-2-the-basics.md
         - Navigating files and directories: pages/bash/bash-3-navigating.md
         - Working with files and directories: pages/bash/bash-4-working_with_files_and_directories.md
-        - Quotes: pages/bash/bash-5-quotes.md
-        - Let us go further: pages/bash/bash-6-let-us-go-further.md
+        - Special_characters: pages/bash/bash-5-special_characters.md
+        - PATH: pages/bash/bash-6-path.md
+        - Commands: pages/bash/bash-7-commands.md
+        - Conditional structure: pages/bash/bash-8-loops.md
+        - Scripting: pages/bash/bash-9-scripting.md
     - Cheat sheet:
         - Bash Cheat sheet: pages/cheat_sheet/bash/bash.md
         - Interesting ressources: pages/cheat_sheet/interesting_ressources.md
-- 
GitLab