dspinellis / dgsh

Shell supporting pipelines to and from multiple processes
http://www.spinellis.gr/sw/dgsh/
Other
323 stars 22 forks source link

Named pipelines #112

Closed coderofsalvation closed 4 years ago

coderofsalvation commented 4 years ago

Mindblowing stuff!

btw. Lets say i branch out a pipe into 3 processes a,b and c. A for xml, B for plaintext log and C as plaintext errorlog. Do i need to remember the order of the pipes (for future processing?) Or can i somehow tag or index the these pipes (to make the script more readabkle)

Keep up the good work!

dspinellis commented 4 years ago

Thank you for your kind words! We did not design such feature. However, most likely the processing will end at the end of each processing type. When you combine the outputs (e.g. with sort, join, comm, cat, paste), the inputs are either homogeneous or only a few, and therefore no naming is required.