Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unix pipes question

Tags:

unix

pipe

I would like to know, if there is a way to print the pipes associated with a process, like "ipcs -s" for semaphores.

like image 824
mithuna Avatar asked Dec 14 '22 03:12

mithuna


1 Answers

Yes, there is. Pipes are file handles, and anything that shows open filehandles (lsof, for instance) will show them.

like image 133
Daniel C. Sobral Avatar answered Jan 02 '23 15:01

Daniel C. Sobral