From d5baafe4b5eef7198a144c1f98183e747990305e Mon Sep 17 00:00:00 2001 From: Jaysin Shukla Date: Sat, 4 Mar 2017 16:03:06 +0530 Subject: [PATCH 1/2] [IMPROVE] Improving syntax highliting by adding jekyll specific code highliting tag --- ...-review-introduction-to-the-commandline.md | 25 +++++++++++-------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/_posts/2017-02-28-book-review-introduction-to-the-commandline.md b/_posts/2017-02-28-book-review-introduction-to-the-commandline.md index ebaa456..7e669a4 100644 --- a/_posts/2017-02-28-book-review-introduction-to-the-commandline.md +++ b/_posts/2017-02-28-book-review-introduction-to-the-commandline.md @@ -19,15 +19,15 @@ excerpt: > ## tl;dr -Every chapter will introduce a bunch of comands and will point to its +Every chapter will introduce a bunch of commands and will point to its respective documentation for further learning. You should expect chapters describing from the [grep](https://www.gnu.org/software/grep/manual/grep.html) command to [GNU Octave](https://www.gnu.org/software/octave/) which is a scientific programming language. The chapters are independent of each other. The book is must read if you are new to the -[GNU/Linux](https://en.wikipedia.org/wiki/Linux) command line. If you are at -the intermediate level, then too investing time in reading this book will -unveil a few surprises for you. +[GNU/Linux](https://en.wikipedia.org/wiki/Linux) command line. If you are at the +intermediate level, then too investing time in reading this book will unveil a +few surprises for you. ## Detailed review @@ -105,17 +105,22 @@ I didn't encounter any sever mistakes except one typo. The section of **Userful customizations** on page number 80 of my printed version, contains following example: -``` +{% highlight shell %} function manyargs { $arg=$1 shift - ... } -``` +{% endhighlight %} -Here, **$arg** is a misprint. A shell variable is never assigned with **$**. It -should be `args=$1`. I myself has corrected the typographical error in the -book. This change will be published maybe in the next release of this book. +Here, **$arg** is a misprint. A shell variable is never assigned with **$**. +Below is the correct code + +{% highlight shell %} +args=$1 +{% endhighlight %} + +I myself has corrected the typographical error in the book. This change will be +published maybe in the next release of this book. If you are encountering any mistakes while reading, I request you to fix the change [here](http://write.flossmanuals.net/command-line/introduction/). The From fdc54fc97d638bdb2f379f22c2e2b1e1eae3b9d4 Mon Sep 17 00:00:00 2001 From: Jaysin Shukla Date: Sun, 5 Mar 2017 23:54:17 +0530 Subject: [PATCH 2/2] [IMPROVE] Improving code by fixing one grammer mistake --- .../2017-02-28-book-review-introduction-to-the-commandline.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2017-02-28-book-review-introduction-to-the-commandline.md b/_posts/2017-02-28-book-review-introduction-to-the-commandline.md index 7e669a4..204b451 100644 --- a/_posts/2017-02-28-book-review-introduction-to-the-commandline.md +++ b/_posts/2017-02-28-book-review-introduction-to-the-commandline.md @@ -119,7 +119,7 @@ Below is the correct code args=$1 {% endhighlight %} -I myself has corrected the typographical error in the book. This change will be +I myself have corrected the typographical error in the book. This change will be published maybe in the next release of this book. If you are encountering any mistakes while reading, I request you to fix the