From f3739b2357a712f7f5e369886af1c84763c5c990 Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Tue, 17 Jan 2023 11:06:08 +0000 Subject: [PATCH] docs(input-redirection): apply prettier to subject --- subjects/devops/input-redirection/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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!