Документ взят из кэша поисковой машины. Адрес оригинального документа : http://comet.sai.msu.ru/UNIXhelp/commanz/cmd4.html
Дата изменения: Fri Jan 17 12:43:13 1997
Дата индексирования: Mon Oct 1 23:04:43 2012
Кодировка:
Connecting commands together

Connecting commands together

Unix allows you to link two or more commands together using a pipe. The pipe takes the standard output from one command and uses it as the standard input to another command.

   command1 | command2 | command3

The | (vertical bar) character is used to represent the pipeline connecting the commands.

With practise you can use pipes to create complex commands by combining several simpler commands together.


[Home] [Search] [Index]