mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-30 15:35:30 +02:00
tee: proposed change for review
This commit is contained in:
parent
d8fc8ce6f1
commit
877e017f00
1 changed files with 2 additions and 2 deletions
|
@ -10,6 +10,6 @@
|
|||
|
||||
`echo "example" | tee -a {{FILE}}`
|
||||
|
||||
- Create a folder called "example", print "example" and write "example" to the specified file:
|
||||
- Create a folder called "example", count the number of characters in "example and write "example" to the terminal:
|
||||
|
||||
`echo "example" | tee >(xargs mkdir) >(cat) >{{path/to/file}}`
|
||||
`echo "example" | tee >(xargs mkdir) >(wc -c)
|
||||
|
|
Loading…
Add table
Reference in a new issue