我可以在 PID 和 FD 上使用 ss 和过滤器吗?

我可以在 PID 和 FD 上使用 ss 和过滤器吗?

我希望能够运行ss和过滤PID=$(pgrep emacs)FDs=(5u|6u|8u)。是否ss支持对其中一个(或两个)进行过滤?或者是最好的选择grep

我目前正在使用lsof,但我更喜欢使用ss

lsof -p $(pgrep emacs) | rg '\b(5|6|8)u\b'

答案1

ss -tlnp | grep -w emacs | grep -E 'fd=(5|6|8)\)'

为你工作?

相关内容