diff --git a/subjects/devops/input-redirection/README.md b/subjects/devops/input-redirection/README.md index eadce137..5cbea6f2 100644 --- a/subjects/devops/input-redirection/README.md +++ b/subjects/devops/input-redirection/README.md @@ -14,12 +14,14 @@ The input to `cat` will be passed using `HereDoc`. Running `show_info.sh` will o ### Usage - First generate the script programmatically: + ```console $ ./input_redirection.sh $ ``` - Then run the generated script: + ```console $ ./show_info.sh The current directory is: current/path/example$ @@ -31,6 +33,7 @@ $ ### Hints You will need to mix more than one redirection tool: + - `>` will be useful to create `show_info.sh`. - `<<` is the `HereDoc` redirection. @@ -38,6 +41,5 @@ You will need to mix more than one redirection tool: - Don't forget you can use `echo` to write into `show_info.sh`. - > You have to use Man or Google to know more about commands flags, in order to solve this exercise! > Google and Man will be your friends!