InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of The Tee Command? |
|
Answer» The TEE COMMAND does two things: ONE is to get data from the standard INPUT and send it to standard output; the second is that it redirects a COPY of that input data into a file that was specified. The tee command does two things: one is to get data from the standard input and send it to standard output; the second is that it redirects a copy of that input data into a file that was specified. |
|