From f3e1e62cdf955a150bb0b04512647986accb6fad Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Sat, 28 Oct 2017 16:49:38 +0530 Subject: [PATCH] tee.md: added missing quotes --- pages/common/tee.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/tee.md b/pages/common/tee.md index 216a6457a7..f42246715f 100644 --- a/pages/common/tee.md +++ b/pages/common/tee.md @@ -10,6 +10,6 @@ `echo "example" | tee -a {{FILE}}` -- Create a folder called "example", count the number of characters in "example and write "example" to the terminal: +- Create a folder called "example", count the number of characters in "example" and write "example" to the terminal: `echo "example" | tee >(xargs mkdir) >(wc -c)`