From ce97a62e08aa8a4ddc9e693a27cd29cc85a5f4e6 Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Fri, 25 Nov 2022 10:26:54 +0100 Subject: [PATCH] 9_batch_processing.Rmd: fix typo --- 9_batch_processing.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/9_batch_processing.Rmd b/9_batch_processing.Rmd index 58c700e..8d817ce 100644 --- a/9_batch_processing.Rmd +++ b/9_batch_processing.Rmd @@ -58,7 +58,7 @@ CMD1 || CMD2 # Executing list of commands -The easiest option to execute list of command is to use `xargs`. `xargs` reads arguments from **stdin** and use them as argument for a command. In UNIX systems the command `echo` send string of character into **stdout**. We are going to use this command to learn more about `xargs`. +The easiest option to execute list of command is to use `xargs`. `xargs` reads arguments from **stdin** and use them as arguments for a command. In UNIX systems the command `echo` send string of character into **stdout**. We are going to use this command to learn more about `xargs`. ```sh echo "hello world" @@ -148,7 +148,7 @@ There are also some predefined variables that you can use like. - `$0` Correspond to all the columns. - `FS` the field separator used - `NF` the number of fields separated by `FS` -- `NR` the number for records already read +- `NR` the number of records already read A `awk` program is a chain of commands with the form `motif { action }` -- GitLab