1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 16:55:25 +02:00

tee.md: added missing quotes

This commit is contained in:
Agniva De Sarker 2017-10-28 16:49:38 +05:30 committed by GitHub
parent 71ad96a7e5
commit f3e1e62cdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)`