From 1bf0f7110a532fee949e5f58a462a948d3c9a380 Mon Sep 17 00:00:00 2001 From: Sean Hellum Date: Tue, 1 Oct 2019 06:44:06 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1a25a004e..17ba9a7323 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ Nu draws inspiration from projects like PowerShell, functional programming langu ## Pipelines -In Unix, it's common to pipe between commands to split up a sophisticated command over multiple steps. Nu takes this a step further and builds heavily on the idea of _pipelines_. Just as the Unix philosophy, Nu allows commands to output from stdout and read from stdin. Additionally, commands can output structured data (you can think of this as a third kind of stream). Commands that work in the pipeline fit into one of three categories +In Unix, it's common to pipe between commands to split up a sophisticated command over multiple steps. Nu takes this a step further and builds heavily on the idea of _pipelines_. Just as the Unix philosophy, Nu allows commands to output from stdout and read from stdin. Additionally, commands can output structured data (you can think of this as a third kind of stream). Commands that work in the pipeline fit into one of three categories: * Commands that produce a stream (eg, `ls`) * Commands that filter a stream (eg, `where type == "Directory"`)