From 5570899ea599cd4e7442ed8e7fd424f1ed17262f Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Sat, 24 Aug 2019 03:34:36 +1200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3cae90f08..86e27d084 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ We can pipeline this into a command that gets the contents of one of the columns -------------+----------------------------+---------+---------+------+--------- authors | description | edition | license | name | version -------------+----------------------------+---------+---------+------+--------- - [list List] | A shell for the GitHub era | 2018 | MIT | nu | 0.1.3 + [list List] | A shell for the GitHub era | 2018 | MIT | nu | 0.2.0 -------------+----------------------------+---------+---------+------+--------- ``` @@ -123,7 +123,7 @@ Finally, we can use commands outside of Nu once we have the data we want: ``` /home/jonathan/Source/nushell(master)> open Cargo.toml | get package.version | echo $it -0.1.3 +0.2.0 ``` Here we use the variable `$it` to refer to the value being piped to the external command.