From 19b0af199e12d5fb53f9adc5e0dc831627e5b82d Mon Sep 17 00:00:00 2001 From: hhurtado <41329366+hhurtado@users.noreply.github.com> Date: Thu, 13 Jun 2019 11:34:08 +0200 Subject: [PATCH] Minor fix to README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d90787a..6b05543 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ help you first, let's start with a common situation. Think about that awesome command that you use every day, something very familiar, like `cloudx storage ls /backups`. Then someone asks you for an specific backup, so you `ssh` into the host, execute your command, possibly -`grepping` through its output, copy the result and send it. And that's fine... +`grepping` through its output, copy the result and send it to him. And that's fine... for the 100 first times. Then you decide, let's use an API for this and generate an awesome web server @@ -108,7 +108,7 @@ curl -X POST -d '1,2,3... testing' localhost:8080/echo Unless you're a hardcore Perl hacker, you'll probably need to write your stuff over more than one line. -Don't worry, we need to write several lines, too. Bash, in its magnificent +Don't worry, we need to write several lines, too. Bash, in its magnificent UNIX® style, provides us with the [here-documents](https://www.gnu.org/software/bash/manual/bash.html#Here-Documents) mechanism that we can leverage precisely for this purpose.