tee Flashcards

1
Q

tee

A

Copy standard input to each FILE, and also to standard output.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

tee

  • a
  • i
  • p
A
  • a, –append, Append to the given FILEs, do not overwrite.
  • i, –ignore-interrupts, Ignore interrupt signals.
  • p, Diagnose errors writing to non pipes.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

tee –output-error[=MODE]

A

Set behavior on write error.

‘warn’ Diagnose errors writing to any output.

‘warn-nopipe’ Diagnose errors writing to any output not a pipe.

‘exit’ Exit on error writing to any output.

‘exit-nopipe’ Exit on error writing to any output not a pipe.

Default = ‘warn-nopipe’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly