diff --git a/docs/pages/bash/bash-4-working_with_files_and_directories.md b/docs/pages/bash/bash-4-working_with_files_and_directories.md
index e826a95642e0516621326bcd158baf9d177ad02f..3d5a48c418c01854a0c9bb294c05e27232ce30e5 100644
--- a/docs/pages/bash/bash-4-working_with_files_and_directories.md
+++ b/docs/pages/bash/bash-4-working_with_files_and_directories.md
@@ -16,7 +16,7 @@ cd ~/{{extra.working_directory}}/script
 
 If we want to run an analysis, it will be nice to have an `analysis` dedicated folder.
 
-!!! question "Create a new directory called `analysis` at the same level as `script` and `data`?"
+!!! question "Create a new directory called `analysis` at the same level than `script` and `data`?"
 
 ??? example "Click to show the solution"
     `mkdir analysis`
@@ -33,7 +33,7 @@ If we want to run an analysis, it will be nice to have an `analysis` dedicated f
 
     
 
-!!! question "Create a new file called `protocol.txt` using `touch`"
+!!! question "Create a new file called `protocol.txt` using `touch` at the same level than `script`, `data` and analysis"
 
 ??? example "Click to show the solution"
     `touch protocol.txt`
@@ -79,7 +79,7 @@ You can now exit with `^X`.
 
 ## Displaying a file (cat, more)
 
-!!! question "Using different commands, try to display the content of the file `script1.sh`. Do you see the difference?"
+!!! question "Using different commands, try to display the content of the file `script1.sh` located in the `script`directory. Do you see the difference?"
 
 ??? example "Click to show the solution"  
     ```bash