I'm trying to implement a shell, and i got everything working perfectly fine, with the exception of multiple pipes.
i.e ls -l -a -F | tr [a-z] [A-Z] | sort
how can i approach this? i know i have to create multiple pipes to solve this but how exactly to do it?
Can someone guide me in the right direction?
I currently manage only one pipe, but i'm not too sure on how to approach this when i have more than two pipes. I was wondering if anyone could provide me with some pseudo-code n how to approach this problem