From 6cc2bfaccb0f7741c9aae7d0d4c45e41cdcd2a08 Mon Sep 17 00:00:00 2001 From: Polle Vanhoof Date: Thu, 26 Oct 2017 19:50:49 +0200 Subject: [PATCH] tee: update language as per remarks --- pages/common/tee.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/tee.md b/pages/common/tee.md index 39a5a41b0..713d47a42 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", print "example" and write "example" to FILE: +- Create a folder called "example", print "example" and write "example" to the specified file: -`echo "example" | tee >(xargs mkdir) >(cat) >{{FILE}}` +`echo "example" | tee >(xargs mkdir) >(cat) >path/to/file`