Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
8 user(s) are online (7 user(s) are browsing encyclopedia)

Members: 0
Guests: 8

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

Filter (Unix)

In UNIX and Unix-like operating systems, a filter is program that gets most of its data from standard input (the main input stream) and writes its main results to standard output (the main output stream). UNIX filters are often used as elements of pipeline (Unix)s. The pipe operator ( | ) on a command line signifies that the main output of the command to the left is passed as main input to the command on the right.

The classic filter would be Grep, which at it simplest prints to its output any lines containing a character string. Here s an example: cut -d : -f 1