![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| simple (probably) pipe question | cleopard | High Level Programming | 3 | 04-24-2008 11:03 AM |
| Reference: WebObjects 5.4.1 Reference | iBot | UNIX and Linux RSS News | 0 | 03-11-2008 06:50 PM |
| Reference Variable | cchaloux | Shell Programming and Scripting | 18 | 10-03-2007 06:58 AM |
| pipe | question | convenientstore | Shell Programming and Scripting | 12 | 06-09-2007 02:49 PM |
| ms sql command reference | inquirer | Windows & DOS: Issues & Discussions | 2 | 08-21-2002 07:51 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
My question is can you use the pipe more than one time in the same command line? By the way I am new to UNIX. Thanks in advanced!
|
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Each process only has one standard output, so there's only one thing per process to pipe... You could do things like redirecting standard error into fifo files, but I wouldn't reccomend using standard error to carry data for performance and reliability reasons -- it's unbuffered, and supposed to be for errors, what happens when "cannot open file" appears in the middle of your data stream?
|
|
#3
|
||||
|
||||
|
I think (although I may be wrong) that the poster is asking if it is legal to do something like
Code:
grep "foo" | sort | uniq |
|
#4
|
|||
|
|||
|
That's what I was asking. Thanks all for the quit response. I am so
|
|||
| Google The UNIX and Linux Forums |