Saved Bookmarks
| 1. |
Explain the term filter. |
|
Answer» A program that takes input from the standard input, and displays results to the standard output by PERFORMING some actions on it. The most POPULAR EXAMPLE of a Unix filter is the grep command. This is USED to search for a pattern in FILES(standard input) and print them out in the output screen(standard output). |
|