mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-01 15:54:22 +00:00
Update cheatsheets
This commit is contained in:
22
pee
Normal file
22
pee
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# pee
|
||||
|
||||
> Tee `stdin` to pipes.
|
||||
> See also: `tee`.
|
||||
> More information: <https://joeyh.name/code/moreutils/>.
|
||||
|
||||
- Run each command, providing each one with a distinct copy of `stdin`:
|
||||
|
||||
`pee {{command1 command2 ...}}`
|
||||
|
||||
- Write a copy of `stdin` to `stdout` (like `tee`):
|
||||
|
||||
`pee cat {{command1 command2 ...}}`
|
||||
|
||||
- Immediately terminate upon SIGPIPEs and write errors:
|
||||
|
||||
`pee --no-ignore-sigpipe --no-ignore-write-errors {{command1 command2 ...}}`
|
||||
Reference in New Issue
Block a user