CMS Pipelines
en.wikipedia.org
CMS Pipelines
1–10 of 13 posts
Re: CMS Pipelines
#2If you want to say what you think is important about an article, you're welcome to do so by posting a comment about that to the thread. Then your opinion is on the same level as everyone else's.
Re: CMS Pipelines
#3We took "Far better than Unix Pipes with multistream+multilevel dispatch" out of the title. That's editorializing, which is not allowed in HN titles. If you want to say what you think is important about an article, you're welcome to do so by posting a comment about that to the thread. Then your opinion is on the same level as everyone else's.
Re: CMS Pipelines
#4grep ”^#” dat1 | foobar > dat2
whereas the key thing about this idea is that real pipes can be multidimensional
grep ”^#” dat1 | foobar
| |
| | snafu | stitch > dat2
2. This system treats ">" as a program in itself and verifies a "program descriptor" before it trashes the next one in the pipe
3. Unix pipes give you the error code of the first stopped component in the pipeline whereas in this model you can hook up instrumentation/statistics to any stage of the pipe
Re: CMS Pipelines
#5We took "Far better than Unix Pipes with multistream+multilevel dispatch" out of the title. That's editorializing, which is not allowed in HN titles. If you want to say what you think is important about an article, you're welcome to do so by posting a comment about that to the thread. Then your opinion is on the same level as everyone else's.
Got it. Thank You. I didnt know about this policy but basically trying to answer the question as to why one should read it/look at it. I was trying to stave off the question that this is for 'mainframe' computing and that it is dated etc
Re: CMS Pipelines
#6Re: CMS Pipelines
#71. Unix pipes are 1 dimensional grep ”^#” dat1 | foobar > dat2 whereas the key thing about this idea is that real pipes can be multidimensional grep ”^#” dat1 | foobar | | | | snafu | stitch > dat2 2. This system treats ">" as a program in itself and verifies a "program descriptor" before it trashes the next one in the pipe 3. Unix pipes give you the error code of the first stopped component in the pipeline whereas i…
mkfifo p1 cat data | tee p1 | awk '{print $5}' | sort | uniq -c | join -1 5 -2 1 -o 1.1,2,2.1,1.2,2.2,2.3 - p1
Re: CMS Pipelines
#81. Unix pipes are 1 dimensional grep ”^#” dat1 | foobar > dat2 whereas the key thing about this idea is that real pipes can be multidimensional grep ”^#” dat1 | foobar | | | | snafu | stitch > dat2 2. This system treats ">" as a program in itself and verifies a "program descriptor" before it trashes the next one in the pipe 3. Unix pipes give you the error code of the first stopped component in the pipeline whereas i…
Re: CMS Pipelines
#9Re: CMS Pipelines
#10TIL Rexx wasn't something OS/2 specific :)